mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
fix debug inputs
This commit is contained in:
parent
39f79927ae
commit
782772cec5
1 changed files with 2 additions and 2 deletions
|
@ -231,7 +231,7 @@ const ConstraintsSettings = ({
|
||||||
onChange={(e) =>
|
onChange={(e) =>
|
||||||
setConstraints((s) => ({
|
setConstraints((s) => ({
|
||||||
...s,
|
...s,
|
||||||
x: parseInt(e.target.value) ?? 200,
|
width: parseInt(e.target.value) ?? 200,
|
||||||
}))
|
}))
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
|
@ -243,7 +243,7 @@ const ConstraintsSettings = ({
|
||||||
onChange={(e) =>
|
onChange={(e) =>
|
||||||
setConstraints((s) => ({
|
setConstraints((s) => ({
|
||||||
...s,
|
...s,
|
||||||
x: parseInt(e.target.value) ?? 200,
|
height: parseInt(e.target.value) ?? 200,
|
||||||
}))
|
}))
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue