diff options
| author | Paul Buetow <paul@buetow.org> | 2026-02-25 09:23:19 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-02-25 09:23:19 +0200 |
| commit | 1279ffb8f2efba54ff005cce91ba65c149cb1ee6 (patch) | |
| tree | 102483e8d836501b3b935e0674d6608fbe9f4f1f /internal/tui/dashboard/tabs.go | |
| parent | b3625cc67c81b4c1bd654a9fcdaf624d76306b07 (diff) | |
Improve TUI layout and increase sparkline height
Diffstat (limited to 'internal/tui/dashboard/tabs.go')
| -rw-r--r-- | internal/tui/dashboard/tabs.go | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/internal/tui/dashboard/tabs.go b/internal/tui/dashboard/tabs.go index 9aae218..a2fe366 100644 --- a/internal/tui/dashboard/tabs.go +++ b/internal/tui/dashboard/tabs.go @@ -22,8 +22,6 @@ const ( TabProcesses // TabLatency is the latency histogram tab. TabLatency - // TabGaps is the inter-syscall gap tab. - TabGaps // TabStream is the live event stream tab. TabStream ) @@ -34,7 +32,6 @@ var allTabs = []Tab{ TabFiles, TabProcesses, TabLatency, - TabGaps, TabStream, } @@ -49,9 +46,7 @@ func (t Tab) String() string { case TabProcesses: return "Processes" case TabLatency: - return "Latency" - case TabGaps: - return "Gaps" + return "Latency+Gaps" case TabStream: return "Stream" default: |
