Skip to content

Commit

Permalink
Merge pull request #15207 from Max0nyshchenko/Fixed-15206-Incorrect-t…
Browse files Browse the repository at this point in the history
…ype-of-InputNumberInputEvent-value

Fix #15206 Incorrect type of InputNumberInputEvent.value
  • Loading branch information
cetincakiroglu authored Apr 9, 2024
2 parents 8beb37c + 10626bf commit 301784e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/inputnumber/inputnumber.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export interface InputNumberInputEvent {
/**
* Input value.
*/
value: number | string;
value: number | string | null;
/**
* Selected option value.
*/
Expand Down

0 comments on commit 301784e

Please sign in to comment.