Skip to content

Commit

Permalink
write value parsed
Browse files Browse the repository at this point in the history
  • Loading branch information
mark7p committed Dec 22, 2024
1 parent ef95333 commit 8f57000
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/primeng/src/inputnumber/inputnumber.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1508,7 +1508,7 @@ export class InputNumber extends BaseComponent implements OnInit, AfterContentIn
}

writeValue(value: any): void {
this.value = value;
this.value = value ? this.parseValue(value.toString()) : value;
this.cd.markForCheck();
}

Expand Down

0 comments on commit 8f57000

Please sign in to comment.