From 5820ab0731f7408c626ab35ff8193c829d603053 Mon Sep 17 00:00:00 2001 From: Naeel Date: Fri, 17 Apr 2026 09:00:27 +0300 Subject: [PATCH] =?UTF-8?q?v9.45:=20fix=20instanceName=20undefined=20?= =?UTF-8?q?=E2=80=94=20add=20missing=20helper=20for=20navBack=20label?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- k8s/deployment.yaml | 2 +- static/index.html | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/k8s/deployment.yaml b/k8s/deployment.yaml index db0017c..f2ae31b 100644 --- a/k8s/deployment.yaml +++ b/k8s/deployment.yaml @@ -15,7 +15,7 @@ spec: spec: containers: - name: cloud-dashboard - image: naeel/cloud-dashboard:v9.44 + image: naeel/cloud-dashboard:v9.45 imagePullPolicy: Always ports: - containerPort: 8080 diff --git a/static/index.html b/static/index.html index 36160b5..da7bd9f 100644 --- a/static/index.html +++ b/static/index.html @@ -973,6 +973,11 @@ function navigateToDep(uid){ row.scrollIntoView({behavior:"smooth", block:"center"}); } +function instanceName(uid){ + var inst = allInstances.find(function(i){ return i.uid === uid; }); + return inst ? (inst.displayName || uid) : uid; +} + function navBack(){ var uid = navBackUid; navBackUid = null;