From 90a344e90b0a28bca5f20c2fd7340cc3f1199262 Mon Sep 17 00:00:00 2001 From: sreehari jayaraj Date: Wed, 30 Aug 2023 11:52:18 +0530 Subject: [PATCH 1/4] fix: removed edit option of cell in locked view --- packages/nc-gui/components/smartsheet/grid/Table.vue | 2 +- packages/nc-gui/components/smartsheet/header/Cell.vue | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/packages/nc-gui/components/smartsheet/grid/Table.vue b/packages/nc-gui/components/smartsheet/grid/Table.vue index b7075a1335..ef05be4d58 100644 --- a/packages/nc-gui/components/smartsheet/grid/Table.vue +++ b/packages/nc-gui/components/smartsheet/grid/Table.vue @@ -1124,7 +1124,7 @@ defineExpose({ }) // when expand is clicked the drawer should open -// and cell should loose focs +// and cell should loose focus const expandAndLooseFocus = (row: Row, col: Record) => { if (expandForm) { expandForm(row, col) diff --git a/packages/nc-gui/components/smartsheet/header/Cell.vue b/packages/nc-gui/components/smartsheet/header/Cell.vue index 4ba762705d..d19301a897 100644 --- a/packages/nc-gui/components/smartsheet/header/Cell.vue +++ b/packages/nc-gui/components/smartsheet/header/Cell.vue @@ -1,6 +1,6 @@