From f92c68561cfe36fc095c3fb674a0ee35ab68e8ba Mon Sep 17 00:00:00 2001 From: Pranav C Date: Fri, 3 Feb 2023 11:25:30 +0530 Subject: [PATCH] chore(gui): lint Signed-off-by: Pranav C --- packages/nc-gui/components/smartsheet/Grid.vue | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/packages/nc-gui/components/smartsheet/Grid.vue b/packages/nc-gui/components/smartsheet/Grid.vue index 644cd28bb9..db9ce5f061 100644 --- a/packages/nc-gui/components/smartsheet/Grid.vue +++ b/packages/nc-gui/components/smartsheet/Grid.vue @@ -284,10 +284,9 @@ const { activeCell.col = 0 resetSelectedRange() nextTick(() => { - ;(document.querySelector('td.cell.active') as - | HTMLInputElement - | HTMLTextAreaElement - )?.scrollIntoView({ behavior: 'smooth' }) + ;(document.querySelector('td.cell.active') as HTMLInputElement | HTMLTextAreaElement)?.scrollIntoView({ + behavior: 'smooth', + }) }) } break