From e1d95a7f397fdc43227cc71870da42a3317db44c Mon Sep 17 00:00:00 2001 From: itskovacs Date: Tue, 19 Aug 2025 19:49:38 +0200 Subject: [PATCH] :lipstick: Trip: map days panel --- .../app/components/trip/trip.component.html | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/src/app/components/trip/trip.component.html b/src/src/app/components/trip/trip.component.html index 74b4468..08aece1 100644 --- a/src/src/app/components/trip/trip.component.html +++ b/src/src/app/components/trip/trip.component.html @@ -491,6 +491,24 @@ + +
+
+

Days

+ @for (day of trip?.days; track day.id) { +
+ {{ + day.items.length }} +
+ {{ day.label }} +
+
+ } +
+
}