From 2acd1454e8538cb6ccfd03e3373867b886d60d7f Mon Sep 17 00:00:00 2001 From: Felix Zett Date: Sun, 31 Aug 2025 22:59:23 +0200 Subject: [PATCH] style: enhance tag visibility on TripChecklist with hover effects --- frontend/src/pages/TripChecklist.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/frontend/src/pages/TripChecklist.tsx b/frontend/src/pages/TripChecklist.tsx index 217aa12..d761318 100644 --- a/frontend/src/pages/TripChecklist.tsx +++ b/frontend/src/pages/TripChecklist.tsx @@ -201,7 +201,7 @@ export default function TripChecklist({ trips }: { trips: any[] }) {
  • { @@ -221,14 +221,14 @@ export default function TripChecklist({ trips }: { trips: any[] }) { {item.name_calculated} {item.item && item.item.tags && item.item.tags.length > 0 && ( - + {[...item.item.tags] .slice() .sort((a, b) => a.name.localeCompare(b.name)) .map((tag: any) => ( #{tag.name} @@ -250,7 +250,7 @@ export default function TripChecklist({ trips }: { trips: any[] }) {
  • { @@ -270,14 +270,14 @@ export default function TripChecklist({ trips }: { trips: any[] }) { {item.name_calculated} {item.item && item.item.tags && item.item.tags.length > 0 && ( - + {[...item.item.tags] .slice() .sort((a, b) => a.name.localeCompare(b.name)) .map((tag: any) => ( #{tag.name}