From 9d60d03d117628f2b903f5db022f6a5909dc13e9 Mon Sep 17 00:00:00 2001 From: Ezequiel Victorero Date: Tue, 7 Oct 2025 16:22:35 -0300 Subject: [PATCH] ShortURL: Fix wrong kind in RTK K8S API creation (#112130) --- public/app/core/utils/shortLinks.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/core/utils/shortLinks.ts b/public/app/core/utils/shortLinks.ts index eeaceaa298f..9872d7f7237 100644 --- a/public/app/core/utils/shortLinks.ts +++ b/public/app/core/utils/shortLinks.ts @@ -49,7 +49,7 @@ export const createShortLink = async function (path: string) { generatedAPI.endpoints.createShortUrl.initiate({ shortUrl: { apiVersion: 'shorturl.grafana.app/v1alpha1', - kind: 'Playlist', + kind: 'ShortURL', metadata: {}, spec: { path: getRelativeURLPath(path),