From 268a0f984f78bc3dfcbf3162a012e01ab4ea286b Mon Sep 17 00:00:00 2001 From: Ramesh Mane <101566080+rameshmane7218@users.noreply.github.com> Date: Sat, 6 Apr 2024 12:00:49 +0000 Subject: [PATCH] chore(nc-gui): lint --- .../components/smartsheet/toolbar/FieldListWithSearch.vue | 2 +- packages/nc-gui/components/smartsheet/toolbar/SearchData.vue | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/nc-gui/components/smartsheet/toolbar/FieldListWithSearch.vue b/packages/nc-gui/components/smartsheet/toolbar/FieldListWithSearch.vue index a2c7b589fb..d4cb245589 100644 --- a/packages/nc-gui/components/smartsheet/toolbar/FieldListWithSearch.vue +++ b/packages/nc-gui/components/smartsheet/toolbar/FieldListWithSearch.vue @@ -76,7 +76,7 @@ const onArrowUp = () => { handleAutoScrollOption() } -const handleKeydownEnter = (e: KeyboardEvent) => { +const handleKeydownEnter = () => { if (filteredOptions.value[activeFieldIndex.value]) { onClick(filteredOptions.value[activeFieldIndex.value]) } else if (filteredOptions.value[0]) { diff --git a/packages/nc-gui/components/smartsheet/toolbar/SearchData.vue b/packages/nc-gui/components/smartsheet/toolbar/SearchData.vue index c468e80e40..dccfe83b9a 100644 --- a/packages/nc-gui/components/smartsheet/toolbar/SearchData.vue +++ b/packages/nc-gui/components/smartsheet/toolbar/SearchData.vue @@ -7,7 +7,6 @@ import { computed, iconMap, inject, - onClickOutside, ref, useFieldQuery, useSmartsheetStoreOrThrow,