From e4adbb9469b241c9bdd0e0f1839a023802445e1c Mon Sep 17 00:00:00 2001 From: "Calum H." Date: Wed, 7 May 2025 22:01:54 +0100 Subject: [PATCH] fix: capitalization of ID org route breaks projects list (#3621) Closes: #3615 --- apps/frontend/src/pages/organization/[id].vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/frontend/src/pages/organization/[id].vue b/apps/frontend/src/pages/organization/[id].vue index 6dfdc57d5..ef8fecd1c 100644 --- a/apps/frontend/src/pages/organization/[id].vue +++ b/apps/frontend/src/pages/organization/[id].vue @@ -294,7 +294,7 @@ const tags = useTags(); const flags = useFeatureFlags(); const config = useRuntimeConfig(); -let orgId = useRouteId(); +let orgId = useRouteId().toLowerCase(); // hacky way to show the edit button on the corner of the card. const routeHasSettings = computed(() => route.path.includes("settings"));