From e81c98fe5b67f797c16c841e3ead8e02e33c37e3 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sat, 21 Oct 2023 11:52:20 +0200 Subject: [PATCH] chore(editor): format --- src/components/input/editor/CommandsList.vue | 11 +- src/components/input/editor/commands.ts | 40 ++-- src/components/input/editor/suggestion.ts | 193 ++++++++++--------- 3 files changed, 121 insertions(+), 123 deletions(-) diff --git a/src/components/input/editor/CommandsList.vue b/src/components/input/editor/CommandsList.vue index a5f5c8048..4b8f55436 100644 --- a/src/components/input/editor/CommandsList.vue +++ b/src/components/input/editor/CommandsList.vue @@ -44,7 +44,7 @@ export default { }, methods: { - onKeyDown({ event }) { + onKeyDown({event}) { if (event.key === 'ArrowUp') { this.upHandler() return true @@ -86,19 +86,16 @@ export default { } -