GO:Cli fix show user storage display truncation (#16805)

### Summary

GO: Cli  fix show user storage display truncation
This commit is contained in:
maoyifeng
2026-07-10 13:59:07 +08:00
committed by GitHub
parent 5797f81fea
commit c33a5a9d49

View File

@@ -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,