From c33a5a9d491b7a54263ab97faed054764dd30399 Mon Sep 17 00:00:00 2001 From: maoyifeng Date: Fri, 10 Jul 2026 13:59:07 +0800 Subject: [PATCH] GO:Cli fix show user storage display truncation (#16805) ### Summary GO: Cli fix show user storage display truncation --- internal/cli/response.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/internal/cli/response.go b/internal/cli/response.go index c4adb3591d..c90c030e18 100644 --- a/internal/cli/response.go +++ b/internal/cli/response.go @@ -129,6 +129,9 @@ func (r *CommonDataResponse) SetOutputFormat(format OutputFormat) { func (r *CommonDataResponse) orderedMetricTable() []map[string]interface{} { table := make([]map[string]interface{}, 0) for key, value := range r.Data { + if _, ok := value.([]interface{}); ok { + continue + } table = append(table, map[string]interface{}{ "Metric": key, "Value": value,