From bd076884619c8f4d9e76ef8bc67b3bfd8b83235a Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Fri, 6 Mar 2026 18:26:39 +0200 Subject: refactor(tui): add dashboard viz mode registry (task 382) --- internal/tui/dashboard/processes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/tui/dashboard/processes.go') diff --git a/internal/tui/dashboard/processes.go b/internal/tui/dashboard/processes.go index 74a185f..9988ea4 100644 --- a/internal/tui/dashboard/processes.go +++ b/internal/tui/dashboard/processes.go @@ -43,7 +43,7 @@ func renderProcessesWithOffset(snap *statsengine.Snapshot, width, height, offset cursor := clampOffset(offset, len(rows)) tbl.SetCursor(cursor) - out := tbl.View() + fmt.Sprintf("\nRow %d/%d [v:bubbles] [b:metric]", cursor+1, len(rows)) + out := tbl.View() + fmt.Sprintf("\nRow %d/%d [v:mode] [b:metric]", cursor+1, len(rows)) if pidFilter > 0 { out += "\n" + "Note: this tab is most useful with All PIDs." } -- cgit v1.2.3