Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
YeonV committed Nov 3, 2024
1 parent 25e7c45 commit 2e25201
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/Devices/EditVirtuals/EditMatrix/MControls.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ const MControls = ({
<Box width={250}>
<Slider
min={1}
max={50}
max={1000}
value={rowN}
onChange={(e, newRowNumber) =>
typeof newRowNumber === 'number' && setRowNumber(newRowNumber)
Expand All @@ -161,7 +161,7 @@ const MControls = ({
<Box width={250}>
<Slider
min={1}
max={50}
max={1000}
value={colN}
onChange={(e, newColNumber) =>
typeof newColNumber === 'number' && setColNumber(newColNumber)
Expand Down

0 comments on commit 2e25201

Please sign in to comment.