💄 Trip: always display total price currency

This commit is contained in:
itskovacs 2025-08-23 16:13:57 +02:00
parent f1b55ad130
commit c6bb75a55f
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@
severity="help" />
<span
class="bg-gray-100 text-gray-800 text-xs md:text-sm font-medium me-2 px-2.5 py-0.5 rounded min-w-fit dark:bg-gray-400">{{
(totalPrice | number:'1.0-2') || '-' }} @if (totalPrice) { {{ trip.currency }} }</span>
(totalPrice | number:'1.0-2') || '-' }} {{ trip.currency }}</span>
</div>
</div>
</section>

View File

@ -35,7 +35,7 @@
<span
class="bg-gray-100 text-gray-800 text-xs md:text-sm font-medium me-2 px-2.5 py-0.5 rounded min-w-fit dark:bg-gray-400">{{
(totalPrice | number:'1.0-2') || '-' }} @if (totalPrice) { {{ trip?.currency }} }</span>
(totalPrice | number:'1.0-2') || '-' }} {{ trip?.currency }}</span>
</div>
</div>
</section>