0
0
Fork 0

fix: refs #7283 css

This commit is contained in:
Jorge Penadés 2024-08-19 17:05:00 +02:00
parent f34f3a78cb
commit 12a5d6cec0
2 changed files with 5 additions and 3 deletions

View File

@ -486,11 +486,12 @@ defineExpose({
:icon="btn.icon"
class="q-px-sm"
flat
:class="
:class="[
btn.isPrimary
? 'text-primary-light'
: 'color-vn-text '
"
: 'color-vn-text ',
btn.class,
]"
:style="`visibility: ${
(btn.show && btn.show(row)) ?? true
? 'visible'

View File

@ -111,6 +111,7 @@ const columns = computed(() => [
{
title: t('Client ticket list'),
icon: 'thumb_down',
class: 'fill-icon',
action: showDenyRequestForm,
isPrimary: true,
},