mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-19 09:31:18 +00:00
Fix: allow 0 in monetary field (#6658)
This commit is contained in:
@@ -74,4 +74,13 @@ describe('MonetaryComponent', () => {
|
||||
expect(component.currency).toEqual('USD')
|
||||
expect(component.monetaryValue).toEqual('')
|
||||
})
|
||||
|
||||
it('should handle zero values', () => {
|
||||
component.writeValue('USD0.00')
|
||||
expect(component.currency).toEqual('USD')
|
||||
expect(component.monetaryValue).toEqual('0.00')
|
||||
component.monetaryValue = '0'
|
||||
component.monetaryValueChange()
|
||||
expect(component.value).toEqual('USD0.00')
|
||||
})
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user