diff --git a/packages/nc-gui/components/virtual-cell/Links.vue b/packages/nc-gui/components/virtual-cell/Links.vue index 348d02ba4a..2cb61a6236 100644 --- a/packages/nc-gui/components/virtual-cell/Links.vue +++ b/packages/nc-gui/components/virtual-cell/Links.vue @@ -3,7 +3,16 @@ import { computed } from '@vue/reactivity' import type { ColumnType } from 'nocodb-sdk' import { ref } from 'vue' import type { Ref } from 'vue' -import { ActiveCellInj,IsUnderLookupInj, CellValueInj, ColumnInj, EditModeInj, MetaInj, inject, useSelectedCellKeyupListener } from '#imports' +import { + ActiveCellInj, + CellValueInj, + ColumnInj, + EditModeInj, + IsUnderLookupInj, + MetaInj, + inject, + useSelectedCellKeyupListener, +} from '#imports' const value = inject(CellValueInj, ref(0)) @@ -29,9 +38,6 @@ const active = inject(ActiveCellInj, ref(false)) const editable = inject(EditModeInj, ref(false)) - -const isUnderLookup = inject(IsUnderLookupInj, ref(false)) - const listItemsDlg = ref(false) const childListDlg = ref(false) @@ -99,8 +105,8 @@ const localCellValue = computed(() => {