Skip to content

Commit 920e568

Browse files
authored
Merge pull request #115 from mattfenwick/table-formatting
flow horizontally in tables to save vertical space
2 parents 678cf32 + cc27e02 commit 920e568

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/connectivity/probe/table.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ func (t *Table) renderUniformMultiTable(render func(*JobResult) string) string {
135135
for _, k := range keys {
136136
lines = append(lines, render(dict[k]))
137137
}
138-
return strings.Join(lines, "\n")
138+
return strings.Join(lines, " ")
139139
})
140140
}
141141

0 commit comments

Comments
 (0)