hotfix: refs #6769 Minor changes
gitea/salix-front/pipeline/pr-dev There was a failure building this commit
Details
gitea/salix-front/pipeline/pr-dev There was a failure building this commit
Details
This commit is contained in:
parent
a616498d1a
commit
7fae6b92a1
|
@ -48,7 +48,7 @@ const columns = computed(() => [
|
|||
},
|
||||
{
|
||||
label: t('itemDiary.origin'),
|
||||
name: 'origin',
|
||||
name: 'originId',
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
|
@ -68,7 +68,7 @@ const columns = computed(() => [
|
|||
|
||||
{
|
||||
label: t('itemDiary.entity'),
|
||||
name: 'entity',
|
||||
name: 'entityId',
|
||||
align: 'left',
|
||||
format: (val) => dashIfEmpty(val),
|
||||
},
|
||||
|
@ -228,16 +228,16 @@ onUnmounted(() => (stateStore.rightDrawer = false));
|
|||
</QBadge>
|
||||
</QTd>
|
||||
</template>
|
||||
<template #body-cell-origin="{ row }">
|
||||
<template #body-cell-originId="{ row }">
|
||||
<QTd @click.stop>
|
||||
<component
|
||||
:is="originTypeMap[row.originType]?.descriptor"
|
||||
:id="row.origin"
|
||||
:id="row.originId"
|
||||
class="q-ma-none"
|
||||
dense
|
||||
style="font-size: 14px"
|
||||
>
|
||||
{{ row.origin }}
|
||||
{{ row.originId }}
|
||||
</component>
|
||||
<span class="link">
|
||||
<QIcon
|
||||
|
@ -245,11 +245,11 @@ onUnmounted(() => (stateStore.rightDrawer = false));
|
|||
class="fill-icon q-mr-sm"
|
||||
size="xs"
|
||||
/>
|
||||
{{ row.origin }}
|
||||
{{ row.originId }}
|
||||
</span>
|
||||
</QTd>
|
||||
</template>
|
||||
<template #body-cell-entity="{ row }">
|
||||
<template #body-cell-entityId="{ row }">
|
||||
<QTd @click.stop>
|
||||
<QBadge
|
||||
:color="row.highlighted ? 'warning' : 'transparent'"
|
||||
|
@ -259,12 +259,12 @@ onUnmounted(() => (stateStore.rightDrawer = false));
|
|||
>
|
||||
<component
|
||||
:is="entityTypeMap[row.entityType]?.descriptor"
|
||||
:id="row.entity"
|
||||
:id="row.entityId"
|
||||
class="q-ma-none"
|
||||
dense
|
||||
style="font-size: 14px"
|
||||
>
|
||||
{{ row.entity }}
|
||||
{{ row.entityId }}
|
||||
</component>
|
||||
<span class="link">
|
||||
<QIcon
|
||||
|
@ -272,7 +272,7 @@ onUnmounted(() => (stateStore.rightDrawer = false));
|
|||
class="fill-icon q-mr-sm"
|
||||
size="xs"
|
||||
/>
|
||||
{{ dashIfEmpty(row.name) }}
|
||||
{{ dashIfEmpty(row.entityName) }}
|
||||
</span>
|
||||
</QBadge>
|
||||
</QTd>
|
||||
|
|
Loading…
Reference in New Issue