summaryrefslogtreecommitdiff
path: root/internal/tui/dashboard
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-08 20:40:12 +0200
committerPaul Buetow <paul@buetow.org>2026-03-08 20:40:12 +0200
commitb6e84c402938b0ffb311f5f90ec41b33637b688f (patch)
treed1866b905b1d68546cade82710750746f840e3e9 /internal/tui/dashboard
parent5d6a13326e269e533f7137a579390e9ef063d2eb (diff)
task 374: remove stream-local filter stack
Diffstat (limited to 'internal/tui/dashboard')
-rw-r--r--internal/tui/dashboard/model.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/tui/dashboard/model.go b/internal/tui/dashboard/model.go
index 5c3f690..5b13642 100644
--- a/internal/tui/dashboard/model.go
+++ b/internal/tui/dashboard/model.go
@@ -522,7 +522,7 @@ func (m Model) ActiveTab() Tab {
// top-level shortcut for the given key press.
func (m Model) BlocksGlobalShortcuts(msg tea.KeyPressMsg) bool {
if m.activeTab == TabStream {
- return m.streamModel.FilterModalVisible() || m.streamModel.ExportModalVisible() || m.streamModel.SearchModalVisible()
+ return m.streamModel.ExportModalVisible() || m.streamModel.SearchModalVisible()
}
if m.activeTab == TabFlame {
return m.flamegraphModel.ConsumesKey(msg)