chore: refs #7155 typo
gitea/salix-front/pipeline/pr-test This commit looks good Details

This commit is contained in:
Alex Moreno 2024-09-25 13:18:26 +02:00
parent 9a11f94922
commit 6bd2835c59
1 changed files with 3 additions and 3 deletions

View File

@ -98,7 +98,7 @@ const $props = defineProps({
type: String,
default: '90vh',
},
translationPrefix: {
chipLocale: {
type: String,
default: null,
},
@ -372,9 +372,9 @@ function handleOnDataSaved(_) {
:columns="splittedColumns.columns"
/>
</template>
<template #tags="{ tag, formatFn }" v-if="translationPrefix">
<template #tags="{ tag, formatFn }" v-if="chipLocale">
<div class="q-gutter-x-xs">
<strong>{{ t(`${translationPrefix}.${tag.label}`) }}: </strong>
<strong>{{ t(`${chipLocale}.${tag.label}`) }}: </strong>
<span>{{ formatFn(tag.value) }}</span>
</div>
</template>