diff --git a/apps/nuxt3-ssr/components/header/Catalogue.vue b/apps/nuxt3-ssr/components/header/Catalogue.vue index ec49684ba3..9d71bee882 100644 --- a/apps/nuxt3-ssr/components/header/Catalogue.vue +++ b/apps/nuxt3-ssr/components/header/Catalogue.vue @@ -19,7 +19,11 @@ const catalogueRouteParam = route.params.catalogue as string; const menu: { label: string; link: string }[] = []; -if (route.params.resourceType) { +// the variable route does not set the resourceType param, therefore check the route name +if ( + route.params.resourceType || + route.name === "schema-ssr-catalogue-catalogue-variables" +) { menu.push({ label: "overview", link: `/${route.params.schema}/ssr-catalogue/${catalogueRouteParam}`,