1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Removing lowercase of url path

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2020-08-30 15:52:38 +03:00
parent 44b74d6a45
commit a65d0f3bde

View File

@ -112,7 +112,7 @@ export function createKubeApiURL(ref: IKubeApiLinkRef): string {
}
return [apiPrefix, apiVersion, namespace, resource, name]
.filter(v => v)
.join("/").toLowerCase()
.join("/")
}
export function lookupApiLink(ref: IKubeObjectRef, parentObject: KubeObject): string {