Browse Source

fix: LTAR broken

pull/6360/head
DarkPhoenix2704 1 year ago
parent
commit
6a93fb0398
  1. 2
      packages/nc-gui/components/virtual-cell/HasMany.vue
  2. 2
      packages/nc-gui/components/virtual-cell/ManyToMany.vue

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

@ -103,7 +103,6 @@ useSelectedCellKeyupListener(inject(ActiveCellInj, ref(false)), (e: KeyboardEven
<template>
<div class="flex items-center gap-1 w-full chips-wrapper">
<template v-if="!isForm">
<div class="chips flex items-center img-container flex-1 hm-items flex-nowrap min-w-0 overflow-hidden">
<template v-if="cells">
<VirtualCellComponentsItemChip
@ -136,7 +135,6 @@ useSelectedCellKeyupListener(inject(ActiveCellInj, ref(false)), (e: KeyboardEven
@click.stop="listItemsDlg = true"
/>
</div>
</template>
<LazyVirtualCellComponentsListItems v-model="listItemsDlg" :column="hasManyColumn" />

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

@ -105,7 +105,6 @@ const m2mColumn = computed(
<template>
<div class="flex items-center gap-1 w-full chips-wrapper">
<template v-if="!isForm">
<div class="chips flex items-center img-container flex-1 hm-items flex-nowrap min-w-0 overflow-hidden">
<template v-if="cells">
<VirtualCellComponentsItemChip
@ -138,7 +137,6 @@ const m2mColumn = computed(
@click.stop="listItemsDlg = true"
/>
</div>
</template>
<LazyVirtualCellComponentsListItems v-model="listItemsDlg" :column="m2mColumn" />

Loading…
Cancel
Save