Browse Source

revert: on double click open child list and avoid it

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

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

@ -65,7 +65,7 @@ const onAttachRecord = () => {
}
const openChildList = () => {
if (!isLocked.value && (editable.value || active.value)) {
if (!isLocked.value) {
childListDlg.value = true
}
}
@ -114,13 +114,3 @@ useSelectedCellKeyupListener(inject(ActiveCellInj, ref(false)), (e: KeyboardEven
/>
</div>
</template>
<style scoped>
.nc-action-icon {
@apply hidden cursor-pointer;
}
.nc-links-wrapper:hover .nc-action-icon {
@apply flex;
}
</style>

Loading…
Cancel
Save