Browse Source

fix(nc-gui): make cell editable on double clicking in url cell

pull/7703/head
Ramesh Mane 7 months ago
parent
commit
7641101b92
  1. 2
      packages/nc-gui/components/cell/Url.vue

2
packages/nc-gui/components/cell/Url.vue

@ -77,7 +77,7 @@ const isExpandedFormOpen = inject(IsExpandedFormOpenInj, ref(false))!
const isForm = inject(IsFormInj)!
const focus: VNodeRef = (el) =>
!isExpandedFormOpen.value && !isEditColumn.value && isForm.value && (el as HTMLInputElement)?.focus()
!isExpandedFormOpen.value && !isEditColumn.value && !isForm.value && (el as HTMLInputElement)?.focus()
watch(
() => editEnabled.value,

Loading…
Cancel
Save