Browse Source

fix(gui-v2): allow children list for viewers

pull/3353/head
Wing-Kam Wong 2 years ago
parent
commit
3a37adb54c
  1. 4
      packages/nc-gui-v2/components/virtual-cell/HasMany.vue

4
packages/nc-gui-v2/components/virtual-cell/HasMany.vue

@ -95,13 +95,13 @@ const unlinkRef = async (rec: Record<string, any>) => {
</span>
</template>
</div>
<div v-if="!isLocked && isUIAllowed('xcDatatableEditable')" class="flex justify-end gap-1 min-h-[30px] items-center">
<div v-if="!isLocked" class="flex justify-end gap-1 min-h-[30px] items-center">
<MdiArrowExpand
class="select-none transform text-sm nc-action-icon text-gray-500/50 hover:text-gray-500 nc-arrow-expand"
@click="childListDlg = true"
/>
<MdiPlus
v-if="!readOnly"
v-if="!readOnly && isUIAllowed('xcDatatableEditable')"
class="select-none text-sm nc-action-icon text-gray-500/50 hover:text-gray-500 nc-plus"
@click="listItemsDlg = true"
/>

Loading…
Cancel
Save