fix warning when quasar build

This commit is contained in:
Javier Segarra 2024-07-09 10:07:22 +02:00
parent a9e19309ee
commit 4eaab6f4ae
1 changed files with 7 additions and 7 deletions

View File

@ -348,8 +348,8 @@ const qCheckBoxController = (sale, action) => {
<QTd @click.stop>
<QCheckbox
:model-value="!!row.hasSaleGroupDetail"
color="transparent"
class="transparent"
color="pink"
class="pink"
:toggle-indeterminate="false"
@update:model-value="clickSaleGroupDetail(row)"
>
@ -529,11 +529,11 @@ const qCheckBoxController = (sale, action) => {
<style lang="scss">
$estados: (
info: var(--q-info),
warning: var(--q-warning),
cyan: #00bcd4,
transparent: transparent,
yellow: #ffeb3b,
'info': var(--q-info),
'warning': var(--q-warning),
'cyan': #00bcd4,
'pink': pink,
'yellow': #ffeb3b,
);
@each $estado, $color in $estados {