adds onChange prop to number component form field to remove console errors

This commit is contained in:
Mose Müller 2024-04-29 15:20:11 +02:00
parent 31f1c9a8ce
commit 6eaf1a03d1

View File

@ -352,6 +352,7 @@ export const NumberComponent = React.memo((props: NumberComponentProps) => {
type="text" type="text"
value={inputString} value={inputString}
disabled={readOnly} disabled={readOnly}
onChange={() => {}}
name={fullAccessPath} name={fullAccessPath}
onKeyDown={handleKeyDown} onKeyDown={handleKeyDown}
onBlur={handleBlur} onBlur={handleBlur}