Skip to content

Commit

Permalink
resolved mouse problem
Browse files Browse the repository at this point in the history
  • Loading branch information
BruCandy committed Nov 23, 2024
1 parent 92b9333 commit a01fca5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions app/routes/reception.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,15 @@ export default function Reception() {
onChange={tableNumberChange}
value={tableNumber}
bg="gray.300"
onFocus={(e) =>
e.target.addEventListener(
"wheel",
(e) => {
e.preventDefault()
},
{ passive: false },
)
}
/>
</Text>
<Text mt={4}>注文メモ:</Text>
Expand Down

0 comments on commit a01fca5

Please sign in to comment.