diff --git a/packages/core/src/common/front-end-routing/routes/cluster/custom-resources/custom-resources-route.injectable.ts b/packages/core/src/common/front-end-routing/routes/cluster/custom-resources/custom-resources-route.injectable.ts index ada023cf0b..5f0c35c76d 100644 --- a/packages/core/src/common/front-end-routing/routes/cluster/custom-resources/custom-resources-route.injectable.ts +++ b/packages/core/src/common/front-end-routing/routes/cluster/custom-resources/custom-resources-route.injectable.ts @@ -8,15 +8,15 @@ import type { Route } from "../../../front-end-route-injection-token"; import { frontEndRouteInjectionToken } from "../../../front-end-route-injection-token"; export interface CustomResourcesPathParameters { - group: string; - name: string; + group?: string; + name?: string; } const customResourcesRouteInjectable = getInjectable({ id: "custom-resources-route", instantiate: (): Route => ({ - path: "/crd/:group/:name", + path: "/crd/:group?/:name?", clusterFrame: true, isEnabled: computed(() => true), }),