Fix: number input can display 0 (#23084)
This commit is contained in:
@@ -198,7 +198,7 @@ const FormInputItem: FC<Props> = ({
|
||||
<Input
|
||||
className='h-8 grow'
|
||||
type='number'
|
||||
value={varInput?.value || ''}
|
||||
value={Number.isNaN(varInput?.value) ? '' : varInput?.value}
|
||||
onChange={e => handleValueChange(e.target.value)}
|
||||
placeholder={placeholder?.[language] || placeholder?.en_US}
|
||||
/>
|
||||
|
Reference in New Issue
Block a user