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" },
];
|