From ddfe5015c9237fbe0fea44f8bcde31708eb3adac Mon Sep 17 00:00:00 2001 From: Wolfboy248 Date: Tue, 26 Aug 2025 08:20:51 +0200 Subject: Fixed some inconsistant styles and fixed category queryparam in maplist page --- frontend/src/pages/Maplist/Components/Map.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'frontend/src/pages/Maplist/Components') diff --git a/frontend/src/pages/Maplist/Components/Map.tsx b/frontend/src/pages/Maplist/Components/Map.tsx index 5451830..503c143 100644 --- a/frontend/src/pages/Maplist/Components/Map.tsx +++ b/frontend/src/pages/Maplist/Components/Map.tsx @@ -19,7 +19,7 @@ const Map: React.FC = ({ map, catNum }) => { className="flex h-40 sm:h-48 bg-cover relative" style={{ backgroundImage: `url(${map.image})` }} > -
+
{map.is_disabled ? map.category_portals[0].portal_count @@ -28,7 +28,11 @@ const Map: React.FC = ({ map, catNum }) => { )?.portal_count} - portals + {map.is_disabled + ? map.category_portals[0].portal_count == 1 ? "portal" : "portals" + : map.category_portals.find( + obj => obj.category.id === catNum + 1 + )?.portal_count == 1 ? "portal" : "portals"}
-- cgit v1.2.3