Browse Source

fix: mutation of row prop

pull/6451/head
DarkPhoenix2704 12 months ago
parent
commit
86cc27a799
  1. 12
      packages/nc-gui/components/virtual-cell/components/ListItem.vue

12
packages/nc-gui/components/virtual-cell/components/ListItem.vue

@ -4,7 +4,7 @@ import { IsFormInj, isImage, useAttachment } from '#imports'
import MaximizeIcon from '~icons/nc-icons/maximize'
import LinkIcon from '~icons/nc-icons/link'
const { row, fields, relatedTableDisplayValueProp, isLoading, isLinked, attachment } = defineProps<{
const props = defineProps<{
row: any
fields: any[]
attachment: any
@ -20,6 +20,8 @@ const isForm = inject(IsFormInj, ref(false))
provide(RowHeightInj, ref(1 as const))
const row = useVModel(props, 'row')
const isPublic = inject(IsPublicInj, ref(false))
const { getPossibleAttachmentSrc } = useAttachment()
@ -31,10 +33,12 @@ interface Attachment {
mimetype: string
}
const attachments: Attachment[] = computed(() => {
const attachments: ComputedRef<Attachment[]> = computed(() => {
try {
if (attachment && row[attachment.title]) {
return typeof row[attachment.title] === 'string' ? JSON.parse(row[attachment.title]) : row[attachment.title]
if (props.attachment && props.attachment[props.attachment.title]) {
return typeof row.value[props.attachment.title] === 'string'
? JSON.parse(row.value[props.attachment.title])
: row.value[props.attachment.title]
}
return []
} catch (e) {

Loading…
Cancel
Save