summaryrefslogtreecommitdiff
path: root/internal/tui/dashboard
diff options
context:
space:
mode:
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)