Browse Source

fix(nc-gui): unable to add new record to linked table by `add new link` nocodb/nocodb#7748

pull/7751/head
Ramesh Mane 6 months ago
parent
commit
52eb8039b2
  1. 4
      packages/nc-gui/components/virtual-cell/components/ListItems.vue

4
packages/nc-gui/components/virtual-cell/components/ListItems.vue

@ -230,10 +230,6 @@ const linkedShortcuts = (e: KeyboardEvent) => {
try {
e.target?.previousElementSibling?.focus()
} catch (e) {}
} else if (e.key !== 'Tab' && e.key !== 'Shift' && e.key !== 'Enter' && e.key !== ' ') {
try {
filterQueryRef.value?.focus()
} catch (e) {}
}
}

Loading…
Cancel
Save