From b6e84c402938b0ffb311f5f90ec41b33637b688f Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sun, 8 Mar 2026 20:40:12 +0200 Subject: task 374: remove stream-local filter stack --- internal/tui/dashboard/model.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/tui/dashboard') 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) -- cgit v1.2.3