Browse Source

fix: enter key related issue in modal

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

2
packages/nc-gui/components/virtual-cell/Links.vue

@ -76,7 +76,7 @@ const openChildList = () => {
useSelectedCellKeyupListener(inject(ActiveCellInj, ref(false)), (e: KeyboardEvent) => {
switch (e.key) {
case 'Enter':
if (isLocked.value) return
if (isLocked.value || listItemsDlg.value) return
childListDlg.value = true
e.stopPropagation()
break

Loading…
Cancel
Save