empty strings or zero will be converted to null

This commit is contained in:
2024-09-11 11:49:47 +02:00
parent 83307684ee
commit fe759f953f
5 changed files with 19 additions and 17 deletions

View File

@@ -29,6 +29,6 @@ export class ValidatedPriceComponent extends BaseInputComponent {
onInputChange(event: Event): void {
this.value = !event ? null : event;
this.onChange(event);
this.onChange(this.value);
}
}