From 8628a4d592ab0a768f53945e40080adcdabc54ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=8A=E3=81=95=E3=82=80=E3=81=AE=E3=81=B2=E3=81=A8?= <46447427+samunohito@users.noreply.github.com> Date: Sat, 23 Nov 2024 08:00:33 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=E3=83=86=E3=83=BC=E3=83=96=E3=83=AB?= =?UTF-8?q?=E3=81=AB=E3=83=95=E3=82=A9=E3=83=BC=E3=82=AB=E3=82=B9=E3=81=8C?= =?UTF-8?q?=E3=81=82=E3=82=8A=E3=80=81=E9=80=9A=E5=B8=B8=E7=8A=B6=E6=85=8B?= =?UTF-8?q?=E3=81=A7=E3=81=82=E3=82=8B=E3=81=A8=E3=81=8D=E3=81=AF=E3=82=AD?= =?UTF-8?q?=E3=83=BC=E3=82=A4=E3=83=99=E3=83=B3=E3=83=88=E3=81=AE=E4=BC=9D?= =?UTF-8?q?=E6=90=AC=E3=82=92=E6=AD=A2=E3=82=81=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/frontend/src/components/grid/MkGrid.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/frontend/src/components/grid/MkGrid.vue b/packages/frontend/src/components/grid/MkGrid.vue index 070b1d8712..60738365fb 100644 --- a/packages/frontend/src/components/grid/MkGrid.vue +++ b/packages/frontend/src/components/grid/MkGrid.vue @@ -269,6 +269,7 @@ function onKeyDown(ev: KeyboardEvent) { switch (state.value) { case 'normal': { ev.preventDefault(); + ev.stopPropagation(); const selectedCellAddress = selectedCell.value?.address ?? CELL_ADDRESS_NONE; const max = availableBounds.value;