From cfa2dd5f92c5e9b6cf00822dc16724d8ffabba82 Mon Sep 17 00:00:00 2001 From: Takusea Date: Tue, 19 Nov 2024 21:59:26 +0900 Subject: [PATCH] =?UTF-8?q?=E7=9C=9F=E5=81=BD=E5=80=A4=E3=81=8C=E9=96=93?= =?UTF-8?q?=E9=81=95=E3=81=A3=E3=81=A6=E3=81=84=E3=81=9F=E3=81=AE=E3=82=92?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Dialog/HotkeySettingDialog.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Dialog/HotkeySettingDialog.vue b/src/components/Dialog/HotkeySettingDialog.vue index 1b1f5426a6..4ef05c6efb 100644 --- a/src/components/Dialog/HotkeySettingDialog.vue +++ b/src/components/Dialog/HotkeySettingDialog.vue @@ -196,7 +196,7 @@ const confirmAndDeleteHotkey = async (action: string) => { cancel: "未割り当てにしない", }); - if (result !== "OK") { + if (result === "OK") { deleteHotkey(action); } };