Skip to content

Commit

Permalink
re-enable new lines and comma between items
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewpmartinez committed Jul 13, 2022
1 parent 832696e commit c559542
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ziti/cmd/ziti/cmd/edge/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -804,9 +804,9 @@ func strSliceToStr(strs []string, width int) string {
for i, str := range strs {
if i != 0 {
if i%width == 0 {
//builder.WriteRune('\n')
builder.WriteRune('\n')
} else {
builder.WriteRune(' ')
builder.WriteString(", ")
}
}

Expand Down

0 comments on commit c559542

Please sign in to comment.