From 71daeaf2e9a556ff88c28f5829d601af0584cfeb Mon Sep 17 00:00:00 2001 From: Pranav C Date: Sat, 17 Jun 2023 16:59:02 +0530 Subject: [PATCH] fix: on enter key press open child list Signed-off-by: Pranav C --- packages/nc-gui/components/virtual-cell/Links.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nc-gui/components/virtual-cell/Links.vue b/packages/nc-gui/components/virtual-cell/Links.vue index bd1ff09f47..ba8332a851 100644 --- a/packages/nc-gui/components/virtual-cell/Links.vue +++ b/packages/nc-gui/components/virtual-cell/Links.vue @@ -67,7 +67,7 @@ const openChildList = () => { useSelectedCellKeyupListener(inject(ActiveCellInj, ref(false)), (e: KeyboardEvent) => { switch (e.key) { case 'Enter': - listItemsDlg.value = true + childListDlg.value = true e.stopPropagation() break }