1
0
mirror of https://github.com/lensapp/lens.git synced 2024-09-11 09:25:26 +03:00

Revert "chore: Cleanup custom resource route definition"

This reverts commit f65e5672b5.
This commit is contained in:
Sebastian Malton 2023-05-23 09:09:13 -04:00
parent d3cf7088d6
commit 40f1180579

View File

@ -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<CustomResourcesPathParameters> => ({
path: "/crd/:group/:name",
path: "/crd/:group?/:name?",
clusterFrame: true,
isEnabled: computed(() => true),
}),