fix: revert claimSummary
gitea/salix-front/pipeline/head This commit looks good Details

This commit is contained in:
Alex Moreno 2025-05-05 10:30:36 +02:00
parent f176221839
commit f8e0b9f1fd
1 changed files with 11 additions and 12 deletions

View File

@ -346,18 +346,17 @@ function claimUrl(section) {
<template #body="props"> <template #body="props">
<QTr :props="props"> <QTr :props="props">
<QTd v-for="col in props.cols" :key="col.name" :props="props"> <QTd v-for="col in props.cols" :key="col.name" :props="props">
<template v-if="col.name === 'description'"> <span v-if="col.name != 'description'">{{
<span class="link">{{ t(col.value)
dashIfEmpty(col.field(props.row)) }}</span>
}}</span> <span class="link" v-if="col.name === 'description'">{{
<ItemDescriptorProxy t(col.value)
:id="props.row.sale.itemFk" }}</span>
:sale-fk="props.row.saleFk" <ItemDescriptorProxy
/> v-if="col.name == 'description'"
</template> :id="props.row.sale.itemFk"
<template v-else> :sale-fk="props.row.saleFk"
{{ dashIfEmpty(col.field(props.row)) }} ></ItemDescriptorProxy>
</template>
</QTd> </QTd>
</QTr> </QTr>
</template> </template>