We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe84141 commit e9b3ef4Copy full SHA for e9b3ef4
src/number-input/number.component.ts
@@ -62,7 +62,7 @@ export class NumberChange {
62
<input
63
type="number"
64
[id]="id"
65
- [attr.value]="value"
+ [value]="value"
66
[attr.min]="min"
67
[attr.max]="max"
68
[attr.step]="step"
@@ -71,7 +71,7 @@ export class NumberChange {
71
[attr.aria-label]="ariaLabel"
72
[attr.data-invalid]="invalid ? invalid : null"
73
[placeholder]="placeholder"
74
- (input)="onNumberInputChange($event)"/>
+ (change)="onNumberInputChange($event)"/>
75
<svg
76
*ngIf="!skeleton && !warn && invalid"
77
cdsIcon="warning--filled"
0 commit comments