Browse Source

fix(gui-v2): variabale name correction

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/3113/head
Pranav C 2 years ago
parent
commit
d84d0e477c
  1. 2
      packages/nc-gui-v2/components/virtual-cell/HasMany.vue

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

@ -65,7 +65,7 @@ const unlinkRef = async (rec: Record<string, any>) => {
<template v-if="!isForm">
<div class="chips flex align-center img-container flex-grow hm-items flex-nowrap min-w-0 overflow-hidden">
<template v-if="cells">
<ItemChip v-for="(cell, i) of cells" :key="i" :item="ch" :value="cell.value" @unlink="unlinkRef(cell.item)" />
<ItemChip v-for="(cell, i) of cells" :key="i" :item="cell.item" :value="cell.value" @unlink="unlinkRef(cell.item)" />
<span v-if="cellValue?.length === 10" class="caption pointer ml-1 grey--text" @click="childListDlg = true"
>more...
</span>

Loading…
Cancel
Save