fix: capitalization of ID org route breaks projects list (#3621)

Closes: #3615
This commit is contained in:
Calum H. 2025-05-07 22:01:54 +01:00 committed by GitHub
parent 8ee621295c
commit e4adbb9469
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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"));