Add ticket price
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
William Buezas 2024-07-05 16:53:39 -03:00
parent ad61bf61fa
commit 98595e9ce4
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ const sales = ref([]);
<div class="q-mt-md full-width row justify-between items-center"> <div class="q-mt-md full-width row justify-between items-center">
<span class="text-h6">{{ sale.quantity }}</span> <span class="text-h6">{{ sale.quantity }}</span>
<span>{{ t('by') }}</span> <span>{{ t('by') }}</span>
<span class="text-h6">{{ toCurrency(sale.item?.price) }}</span> <span class="text-h6">{{ toCurrency(sale?.price) }}</span>
</div> </div>
</template> </template>
</CatalogItem> </CatalogItem>