From d2721da7bc018ff0041bb5917cc5d80b35b056b8 Mon Sep 17 00:00:00 2001 From: Ramesh Mane <101566080+rameshmane7218@users.noreply.github.com> Date: Fri, 23 Feb 2024 07:46:12 +0000 Subject: [PATCH] fix(nc-gui): long text double add 1st pressed key in cell issue --- packages/nc-gui/composables/useMultiSelect/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nc-gui/composables/useMultiSelect/index.ts b/packages/nc-gui/composables/useMultiSelect/index.ts index c81ec5f702..4225bec97f 100644 --- a/packages/nc-gui/composables/useMultiSelect/index.ts +++ b/packages/nc-gui/composables/useMultiSelect/index.ts @@ -785,7 +785,7 @@ export function useMultiSelect( if (columnObj.uidt === UITypes.LongText) { if (rowObj.row[columnObj.title] === '
') { rowObj.row[columnObj.title] = e.key - } else { + } else if (parseProp(columnObj.meta).richMode) { rowObj.row[columnObj.title] = rowObj.row[columnObj.title] ? rowObj.row[columnObj.title] + e.key : e.key } } else {