tomokusaba
tomokusaba
I know something is wrong with Validate. However, I've never done TypeScript before and don't know how to deal with it now.
number-field.ts ```ts:number-field.ts public validate(): void { try { parseFloat(this.value); } catch (e) { super.setValidity( this.proxy.validity, this.proxy.validationMessage, this.control ); return; } const parsedValue = parseFloat(this.valueAsNumber.toString()); const validValue = isNaN(parsedValue) ? null...