From 135efd7e98b28408a2567a8175d29ef17e79e1fc Mon Sep 17 00:00:00 2001 From: Ramesh Mane <101566080+rameshmane7218@users.noreply.github.com> Date: Wed, 31 Jan 2024 06:31:11 +0000 Subject: [PATCH] fix(nc-gui): bulk delete webhook trigger issue on selecting single row nocodb/nocodb#7511 --- .../components/smartsheet/grid/Table.vue | 64 +++++++++++++++---- packages/nc-gui/composables/useData.ts | 5 +- 2 files changed, 52 insertions(+), 17 deletions(-) diff --git a/packages/nc-gui/components/smartsheet/grid/Table.vue b/packages/nc-gui/components/smartsheet/grid/Table.vue index 379065f7ca..e4a0b2bbd6 100644 --- a/packages/nc-gui/components/smartsheet/grid/Table.vue +++ b/packages/nc-gui/components/smartsheet/grid/Table.vue @@ -1320,7 +1320,10 @@ onKeyStroke('ArrowDown', onDown) :title="true" :paragraph="false" class="ml-2 -mt-2" - :class="{ 'max-w-32': colIndex !== 0, 'max-w-5 !ml-3.5': colIndex === 0 }" + :class="{ + 'max-w-32': colIndex !== 0, + 'max-w-5 !ml-3.5': colIndex === 0, + }" /> @@ -1330,7 +1333,10 @@ onKeyStroke('ArrowDown', onDown)