From 1c5dcb61aca85850bb2824ec5aed97120ca2da7e Mon Sep 17 00:00:00 2001 From: itskovacs Date: Mon, 18 Aug 2025 21:12:08 +0200 Subject: [PATCH] :lipstick: Improve Trip table status dot visibility --- src/src/app/components/trip/trip.component.html | 4 ++-- src/src/app/services/utils.service.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/src/app/components/trip/trip.component.html b/src/src/app/components/trip/trip.component.html index f0f0838..40c0501 100644 --- a/src/src/app/components/trip/trip.component.html +++ b/src/src/app/components/trip/trip.component.html @@ -132,7 +132,7 @@ @if (tripTableSelectedColumns.includes('time')) {{{ tripitem.time }}} @if (tripTableSelectedColumns.includes('text')) {
- @if (tripitem.status) {
} {{ tripitem.text }}
@@ -181,7 +181,7 @@ @if (tripTableSelectedColumns.includes('time')) {{{ tripitem.time }}} @if (tripTableSelectedColumns.includes('text')) {
- @if (tripitem.status) {
} {{ tripitem.text }}
diff --git a/src/src/app/services/utils.service.ts b/src/src/app/services/utils.service.ts index 53051c3..8cf09f5 100644 --- a/src/src/app/services/utils.service.ts +++ b/src/src/app/services/utils.service.ts @@ -15,7 +15,7 @@ export class UtilsService { readonly statuses: TripStatus[] = [ { label: "pending", color: "#3258A8" }, - { label: "booked", color: "#007A30" }, + { label: "booked", color: "#00A341" }, { label: "constraint", color: "#FFB900" }, { label: "optional", color: "#625A84" }, ];