Item last entries #342

Merged
jsegarra merged 11 commits from :feature/ItemLastEntries into dev 2024-05-02 12:43:05 +00:00
1 changed files with 10 additions and 2 deletions
Showing only changes of commit 120e84f439 - Show all commits

View File

@ -250,7 +250,11 @@ onUnmounted(() => (stateStore.rightDrawer = false));
</template>
<template #body-cell-packing="{ row }">
<QTd @click.stop>
<QBadge class="center-content" rounded color="grey-13">
<QBadge
class="center-content"
rounded
:color="row.groupingMode == 'packing' ? 'grey-13' : 'black'"
>
{{ dashIfEmpty(row.packing) }}
<QTooltip>{{ t('lastEntries.packing') }}</QTooltip>
</QBadge>
@ -258,7 +262,11 @@ onUnmounted(() => (stateStore.rightDrawer = false));
</template>
<template #body-cell-grouping="{ row }">
<QTd @click.stop>
<QBadge class="center-content" rounded color="black">
<QBadge
class="center-content"
rounded
:color="row.groupingMode == 'grouping' ? 'grey-13' : 'black'"
>
{{ dashIfEmpty(row.grouping) }}
<QTooltip>{{ t('lastEntries.grouping') }}</QTooltip>
</QBadge>