fix: #8313 fixed ClaimLines format #1097

Merged
provira merged 5 commits from 8813-arreglarFormatoClaimLines into dev 2024-12-19 05:06:28 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 4ac5a603bb - Show all commits

View File

@ -341,11 +341,11 @@ function claimUrl(section) {
</template> </template>
<template #body="props"> <template #body="props">
<QTr :props="props"> <QTr :props="props">
<QTd v-for="col in props.cols" :key="col.name" :props="props" class=""> <QTd v-for="col in props.cols" :key="col.name" :props="props">

Eliminar la propiedad class si no se utiliza

Eliminar la propiedad class si no se utiliza
<span v-if="col.name != 'description'">{{ <span v-if="col.name != 'description'">{{
t(col.value) t(col.value)
}}</span> }}</span>
<span class="link" v-if="col.name == 'description'">{{ <span class="link" v-if="col.name === 'description'">{{

===

===
t(col.value) t(col.value)
}}</span> }}</span>
<ItemDescriptorProxy <ItemDescriptorProxy