diff --git a/packages/stencil-library/src/components/dnn-input/dnn-input.tsx b/packages/stencil-library/src/components/dnn-input/dnn-input.tsx index 4068c6343..74a702527 100644 --- a/packages/stencil-library/src/components/dnn-input/dnn-input.tsx +++ b/packages/stencil-library/src/components/dnn-input/dnn-input.tsx @@ -171,6 +171,10 @@ export class DnnInput { if (this.type == "date" || this.type == "datetime-local" || this.type == "time") { return false; } + + if (this.type === "number" && this.value === 0){ + return false; + } return true; }