fix: Right menu double icon
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Javier Segarra 2024-07-08 15:00:45 +02:00
parent 286fbc5aba
commit 20eb26127a
1 changed files with 25 additions and 31 deletions

View File

@ -515,8 +515,7 @@ onUnmounted(() => (stateStore.rightDrawer = false));
</QBtnGroup> </QBtnGroup>
</template> </template>
</VnSubToolbar> </VnSubToolbar>
<RightMenu> <QDrawer side="right" :width="270" v-model="stateStore.rightDrawer">
<template #right-panel>
<div <div
class="q-pa-md q-mb-md q-ma-md color-vn-text" class="q-pa-md q-mb-md q-ma-md color-vn-text"
style="border: 2px solid black" style="border: 2px solid black"
@ -528,9 +527,7 @@ onUnmounted(() => (stateStore.rightDrawer = false));
<span>{{ toCurrency(store.data?.totalWithoutVat) }}</span> <span>{{ toCurrency(store.data?.totalWithoutVat) }}</span>
</QCardSection> </QCardSection>
<QCardSection class="justify-center text-subtitle1" horizontal> <QCardSection class="justify-center text-subtitle1" horizontal>
<span class="q-mr-xs color-vn-label"> <span class="q-mr-xs color-vn-label"> {{ t('ticketSale.tax') }}: </span>
{{ t('ticketSale.tax') }}:
</span>
<span>{{ <span>{{
toCurrency(store.data?.totalWithVat - store.data?.totalWithoutVat) toCurrency(store.data?.totalWithVat - store.data?.totalWithoutVat)
}}</span> }}</span>
@ -539,14 +536,11 @@ onUnmounted(() => (stateStore.rightDrawer = false));
class="justify-center text-weight-bold text-subtitle1" class="justify-center text-weight-bold text-subtitle1"
horizontal horizontal
> >
<span class="q-mr-xs color-vn-label"> <span class="q-mr-xs color-vn-label"> {{ t('ticketSale.total') }}: </span>
{{ t('ticketSale.total') }}:
</span>
<span>{{ toCurrency(store.data?.totalWithVat) }}</span> <span>{{ toCurrency(store.data?.totalWithVat) }}</span>
</QCardSection> </QCardSection>
</div> </div></QDrawer
</template> >
</RightMenu>
<QTable <QTable
:rows="sales" :rows="sales"
:columns="columns" :columns="columns"