0
0
Fork 0

style: refs #6899 fixed style

This commit is contained in:
Jon Elias 2024-04-18 13:14:59 +02:00
parent ace55c554f
commit 3f8cafd201
1 changed files with 10 additions and 5 deletions

View File

@ -151,7 +151,12 @@ const ticketsColumns = ref([
<QTable v-if="tickets" :columns="ticketsColumns" :rows="tickets" flat> <QTable v-if="tickets" :columns="ticketsColumns" :rows="tickets" flat>
<template #header="props"> <template #header="props">
<QTr :props="props"> <QTr :props="props">
<QTh class="tr-header" v-for="col in props.cols" :key="col.name" :props="props"> <QTh
class="tr-header"
v-for="col in props.cols"
:key="col.name"
:props="props"
>
{{ t(col.label) }} {{ t(col.label) }}
</QTh> </QTh>
</QTr> </QTr>
@ -179,10 +184,10 @@ const ticketsColumns = ref([
</template> </template>
<style lang="scss" scoped> <style lang="scss" scoped>
.tr-header{ .tr-header {
color: #a8a8a8; color: var(--vn-label-color);
} }
.no-uppercase{ .no-uppercase {
text-transform: none; text-transform: none;
} }
</style> </style>