From c6bb75a55f5cd150ed520acf325c74911ff7433b Mon Sep 17 00:00:00 2001 From: itskovacs Date: Sat, 23 Aug 2025 16:13:57 +0200 Subject: [PATCH] :lipstick: Trip: always display total price currency --- src/src/app/components/shared-trip/shared-trip.component.html | 2 +- src/src/app/components/trip/trip.component.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/src/app/components/shared-trip/shared-trip.component.html b/src/src/app/components/shared-trip/shared-trip.component.html index 6a81449..3ed6401 100644 --- a/src/src/app/components/shared-trip/shared-trip.component.html +++ b/src/src/app/components/shared-trip/shared-trip.component.html @@ -19,7 +19,7 @@ severity="help" /> {{ - (totalPrice | number:'1.0-2') || '-' }} @if (totalPrice) { {{ trip.currency }} } + (totalPrice | number:'1.0-2') || '-' }} {{ trip.currency }} diff --git a/src/src/app/components/trip/trip.component.html b/src/src/app/components/trip/trip.component.html index 2181223..df6c204 100644 --- a/src/src/app/components/trip/trip.component.html +++ b/src/src/app/components/trip/trip.component.html @@ -35,7 +35,7 @@ {{ - (totalPrice | number:'1.0-2') || '-' }} @if (totalPrice) { {{ trip?.currency }} } + (totalPrice | number:'1.0-2') || '-' }} {{ trip?.currency }}