We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 846bbf6 + d8d7519 commit 7fdf712Copy full SHA for 7fdf712
cli/tui.go
@@ -438,7 +438,9 @@ func (t *TUI) functionsView(now time.Time) string {
438
functionColumnWidth := max(9, min(50, maxFunctionWidth))
439
440
// Render the table.
441
- b.WriteString(t.tableHeaderView(functionColumnWidth))
+ if i == 0 {
442
+ b.WriteString(t.tableHeaderView(functionColumnWidth))
443
+ }
444
for i := range rows.rows {
445
b.WriteString(t.tableRowView(&rows.rows[i], functionColumnWidth))
446
}
0 commit comments