7383-testToMaster #370

Merged
alexm merged 365 commits from 7383-testToMaster into master 2024-05-14 05:46:56 +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>