Fix: Dont parse numbers with exponent as integer (#5457)

This commit is contained in:
shamoon 2024-01-19 06:29:13 -08:00 committed by GitHub
parent d378c861f6
commit e5f48739a0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 1 deletions

View File

@ -60,4 +60,9 @@ describe('NumberComponent', () => {
component.writeValue(11.1)
expect(component.value).toEqual(11.1)
})
it('should support scientific notation', () => {
component.writeValue(1.23456789e8)
expect(component.value).toEqual(123456789)
})
})

View File

@ -37,7 +37,8 @@ export class NumberComponent extends AbstractInputComponent<number> {
}
writeValue(newValue: any): void {
if (this.step === 1) newValue = parseInt(newValue, 10)
if (this.step === 1 && newValue?.toString().indexOf('e') === -1)
newValue = parseInt(newValue, 10)
if (this.step === 0.01) newValue = parseFloat(newValue).toFixed(2)
super.writeValue(newValue)
}