Skip to content

Commit

Permalink
fix(web/input): ensure number type input is max length
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeWasTakenn committed Nov 19, 2022
1 parent 59051d5 commit d5e0305
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions web/src/features/dialog/components/fields/number.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 />} />
Expand Down

0 comments on commit d5e0305

Please sign in to comment.