Skip to content

Commit

Permalink
Merge pull request #1215 from valadas/0-string
Browse files Browse the repository at this point in the history
Fixed an issue with 0 string float label
  • Loading branch information
valadas authored Oct 26, 2024
2 parents e666349 + 6c9a762 commit 46f4ba7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ export class DnnInput {
return false;
}

if (this.type === "number" && this.value === 0){
if (this.value == 0){
return false;
}

Expand Down

0 comments on commit 46f4ba7

Please sign in to comment.