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:
parent
44b74d6a45
commit
a65d0f3bde
@ -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 {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user