fix(web/input): ensure number type input is max length

This commit is contained in:
Luke
2022-11-19 11:04:34 +01:00
parent 59051d505b
commit d5e0305df9

View File

@@ -34,6 +34,7 @@ const NumberField: React.FC<Props> = (props) => {
min={props.row.min}
max={props.row.max}
isDisabled={props.row.disabled}
w="100%"
>
{props.row.icon && (
<InputLeftElement pointerEvents="none" children={<FontAwesomeIcon icon={props.row.icon} fixedWidth />} />