From f90b62d7232751bc85c67797e14c5af7ece3bead Mon Sep 17 00:00:00 2001 From: chh <1474479+chenhunghan@users.noreply.github.com> Date: Tue, 18 May 2021 12:32:10 +0300 Subject: [PATCH] Fix kind of WebLink catalog entity should be "WebLink" --- src/common/catalog-entities/web-link.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/catalog-entities/web-link.ts b/src/common/catalog-entities/web-link.ts index 6223b6dbfc..7e0f024421 100644 --- a/src/common/catalog-entities/web-link.ts +++ b/src/common/catalog-entities/web-link.ts @@ -32,7 +32,7 @@ export type WebLinkSpec = { export class WebLink extends CatalogEntity { public readonly apiVersion = "entity.k8slens.dev/v1alpha1"; - public readonly kind = "KubernetesCluster"; + public readonly kind = "WebLink"; async onRun() { window.open(this.spec.url, "_blank");