File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/renderer/components/filters Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ export const SearchFilter: FC = () => {
112112 onAdd = { addIncludeSearchToken }
113113 onRemove = { removeIncludeSearchToken }
114114 showSuggestionsOnFocusIfEmpty = {
115- ! hasExcludeSearchFilters ( settings ) && ! ! settings . detailedNotifications
115+ ! hasIncludeSearchFilters ( settings )
116116 }
117117 tokens = { includeSearchTokens }
118118 />
@@ -123,7 +123,7 @@ export const SearchFilter: FC = () => {
123123 onAdd = { addExcludeSearchToken }
124124 onRemove = { removeExcludeSearchToken }
125125 showSuggestionsOnFocusIfEmpty = {
126- ! hasIncludeSearchFilters ( settings ) && ! ! settings . detailedNotifications
126+ ! hasExcludeSearchFilters ( settings )
127127 }
128128 tokens = { excludeSearchTokens }
129129 />
You can’t perform that action at this time.
0 commit comments