Browse Source

feat(nc-gui): pass column to ListItems & ListChildItems

pull/5724/head
Wing-Kam Wong 1 year ago
parent
commit
f8ccfc5b86
  1. 3
      packages/nc-gui/components/virtual-cell/HasMany.vue

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

@ -134,11 +134,12 @@ useSelectedCellKeyupListener(inject(ActiveCellInj, ref(false)), (e: KeyboardEven
</div>
</template>
<LazyVirtualCellComponentsListItems v-model="listItemsDlg" />
<LazyVirtualCellComponentsListItems v-model="listItemsDlg" :column="hasManyColumn" />
<LazyVirtualCellComponentsListChildItems
v-model="childListDlg"
:cell-value="localCellValue"
:column="hasManyColumn"
@attach-record="onAttachRecord"
/>
</div>

Loading…
Cancel
Save