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

Fix title of service account dialog (#3883)

This commit is contained in:
Sebastian Malton 2021-09-23 22:27:03 -04:00 committed by GitHub
parent 3c77c06519
commit 17e97f16c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -153,7 +153,7 @@ export function openServiceAccountKubeConfig(account: ServiceAccount) {
const namespace = account.getNs(); const namespace = account.getNs();
KubeConfigDialog.open({ KubeConfigDialog.open({
title: "{accountName} kubeconfig", title: `${accountName} kubeconfig`,
loader: () => apiBase.get(`/kubeconfig/service-account/${namespace}/${accountName}`) loader: () => apiBase.get(`/kubeconfig/service-account/${namespace}/${accountName}`)
}); });
} }