Browse Source

fix: on enter key press open child list

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/5848/head
Pranav C 1 year ago
parent
commit
71daeaf2e9
  1. 2
      packages/nc-gui/components/virtual-cell/Links.vue

2
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
}

Loading…
Cancel
Save