From 91956d88a2254a47d63864657b483151b13ca5a3 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sun, 24 Oct 2021 17:24:09 +0100 Subject: [PATCH] :zap: Convert hotkey value to Number --- src/components/InteractiveEditor/EditItem.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/InteractiveEditor/EditItem.vue b/src/components/InteractiveEditor/EditItem.vue index c2ce79fd..dd79f4c8 100644 --- a/src/components/InteractiveEditor/EditItem.vue +++ b/src/components/InteractiveEditor/EditItem.vue @@ -209,6 +209,7 @@ export default { }; if (newItem.tags) newItem.tags = strToTags(newItem.tags); if (newItem.statusCheck) newItem.statusCheck = strToBool(newItem.statusCheck); + // if (newItem.hotkey) newItem.hotkey = parseInt(newItem.hotkey, 10); return newItem; }, /* Clean up work, triggered when modal closed */