From 32f985d103c0cdccc17bfab716675ce858033f27 Mon Sep 17 00:00:00 2001 From: Richard Cox Date: Fri, 26 Apr 2019 12:57:59 +0100 Subject: [PATCH] Fix node summary page - we were fetching using the node name.. but storing using the node uid --- .../frontend/app/custom/kubernetes/store/kubernetes.effects.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom-src/frontend/app/custom/kubernetes/store/kubernetes.effects.ts b/custom-src/frontend/app/custom/kubernetes/store/kubernetes.effects.ts index 4e31071404..37e453ae14 100644 --- a/custom-src/frontend/app/custom/kubernetes/store/kubernetes.effects.ts +++ b/custom-src/frontend/app/custom/kubernetes/store/kubernetes.effects.ts @@ -147,7 +147,7 @@ export class KubernetesEffects { return this.processSingleItemAction(action, `/pp/${this.proxyAPIVersion}/proxy/api/v1/nodes/${action.nodeName}`, kubernetesNodesSchemaKey, - getKubeAPIResourceGuid); + (node) => node.metadata.name); }) );