From d9c6e5c52fcb6282847b4093f9cee695362e433e Mon Sep 17 00:00:00 2001 From: chh <1474479+chenhunghan@users.noreply.github.com> Date: Tue, 18 May 2021 14:13:07 +0300 Subject: [PATCH] Catalog entity WebLink.kind 'KubernetesCluster' > 'WebLink' (#2799) Signed-off-by: Hung-Han (Henry) Chen --- 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");