Skip to content

Commit

Permalink
fix: input max min controls
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoninoBonanno authored and astagi committed Jul 14, 2023
1 parent 24e58ad commit 698adfd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
<input type="number"
[id]="id"
[step]="step ?? null"
[min]="min ?? null"
[max]="max ?? null"
[class.is-invalid]="isInvalid"
[class.is-valid]="isValid"
[formControl]="control"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="select-wrapper">
<label [for]="id">{{label}}</label>
<label *ngIf="label" [for]="id">{{label}}</label>
<select [id]="id" [formControl]="control"
[class.is-invalid]="isInvalid"
[class.is-valid]="isValid"
Expand Down

0 comments on commit 698adfd

Please sign in to comment.