Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/component/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"websocket": "^1.0.35"
},
"peerDependencies": {
"@h5web/lib": "14.0.1",
"@h5web/lib": "^15.0.0",
"@react-three/drei": "^9.122.0",
"@react-three/fiber": "^8.17.0",
"ndarray": "^1.0.19",
Expand Down
4 changes: 2 additions & 2 deletions client/component/src/AxialSelectionConfig.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function AxialSelectionConfig(props: AxialSelectionConfigProps) {
return selection.dimension === 0 ? (
<Fragment key="axis x">
<XInput
key={`XInput${selection.vStart.x}`}
key={`XInput${selection._vStart.x}`}
selection={selection}
updateSelection={updateSelection}
disabled={disabled}
Expand All @@ -52,7 +52,7 @@ function AxialSelectionConfig(props: AxialSelectionConfigProps) {
) : (
<Fragment key="axis y">
<YInput
key={`YInput${selection.vStart.y}`}
key={`YInput${selection._vStart.y}`}
selection={selection}
updateSelection={updateSelection}
disabled={disabled}
Expand Down
Loading