diff options
| author | Paul Buetow <paul@buetow.org> | 2026-03-08 20:40:12 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-03-08 20:40:12 +0200 |
| commit | b6e84c402938b0ffb311f5f90ec41b33637b688f (patch) | |
| tree | d1866b905b1d68546cade82710750746f840e3e9 /internal/tui/dashboard | |
| parent | 5d6a13326e269e533f7137a579390e9ef063d2eb (diff) | |
task 374: remove stream-local filter stack
Diffstat (limited to 'internal/tui/dashboard')
| -rw-r--r-- | internal/tui/dashboard/model.go | 2 |
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) |
