From 82926a8b2ac2957ea23f23f2cbe2ce5135f4a081 Mon Sep 17 00:00:00 2001 From: Andrei Kvapil Date: Tue, 30 Sep 2025 19:01:29 +0200 Subject: [PATCH] [dashboard] fix: showing secrets with empty values Signed-off-by: Andrei Kvapil --- internal/controller/dashboard/static_helpers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/controller/dashboard/static_helpers.go b/internal/controller/dashboard/static_helpers.go index a18e6296..03003f6d 100644 --- a/internal/controller/dashboard/static_helpers.go +++ b/internal/controller/dashboard/static_helpers.go @@ -972,7 +972,7 @@ func createSecretBase64Column(name, jsonPath string) map[string]any { "data": map[string]any{ "id": "example-secretbase64", "plainTextValue": "hello", - "base64Value": "{reqsJsonPath[0]['" + jsonPath + "']['-']}", + "base64Value": "{reqsJsonPath[0]['" + jsonPath + "']['']}", }, }, },