Skip to content

Commit c6bb75a

Browse files
committed
💄 Trip: always display total price currency
1 parent f1b55ad commit c6bb75a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/src/app/components/shared-trip/shared-trip.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ <h1 class="font-medium tracking-tight text-xl md:text-2xl truncate">{{ trip.name
1919
severity="help" />
2020
<span
2121
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">{{
22-
(totalPrice | number:'1.0-2') || '-' }} @if (totalPrice) { {{ trip.currency }} }</span>
22+
(totalPrice | number:'1.0-2') || '-' }} {{ trip.currency }}</span>
2323
</div>
2424
</div>
2525
</section>

src/src/app/components/trip/trip.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ <h1 class="font-medium tracking-tight text-2xl truncate">{{ trip?.name }}</h1>
3535

3636
<span
3737
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">{{
38-
(totalPrice | number:'1.0-2') || '-' }} @if (totalPrice) { {{ trip?.currency }} }</span>
38+
(totalPrice | number:'1.0-2') || '-' }} {{ trip?.currency }}</span>
3939
</div>
4040
</div>
4141
</section>

0 commit comments

Comments
 (0)