Skip to content

Commit 4e70dff

Browse files
committed
Fix formatting of custom fields display in PrintStacksList
1 parent 6abb3a2 commit 4e70dff

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

internal/cli/print.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ func PrintStacksList(stacks *schema.Stacks, details bool) {
8989
// Custom fields - show as key=value pairs, one per line
9090
if s.Metadata.Custom != nil {
9191
customPairs := []string{}
92-
92+
9393
// Handle ordered slice format (key, value, key, value, ...)
9494
if orderedSlice, ok := s.Metadata.Custom.([]interface{}); ok {
9595
for i := 0; i < len(orderedSlice); i += 2 {
@@ -107,7 +107,7 @@ func PrintStacksList(stacks *schema.Stacks, details bool) {
107107
customPairs = append(customPairs, line)
108108
}
109109
}
110-
110+
111111
if len(customPairs) > 0 {
112112
custom = strings.Join(customPairs, "\n")
113113
}

0 commit comments

Comments
 (0)