mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-27 00:16:52 +00:00
Show excluded words in UI
This commit is contained in:
@@ -84,11 +84,12 @@ class SearchController extends Controller
|
||||
|
||||
// words from query and operators:
|
||||
$query = $searcher->getWordsAsString();
|
||||
$excludedWords = $searcher->getExcludedWordsAsString();
|
||||
$operators = $searcher->getOperators();
|
||||
$invalidOperators = $searcher->getInvalidOperators();
|
||||
$subTitle = (string) trans('breadcrumbs.search_result', ['query' => $fullQuery]);
|
||||
|
||||
return view('search.index', compact('query', 'operators', 'page', 'rule', 'fullQuery', 'subTitle', 'ruleId', 'ruleChanged', 'invalidOperators'));
|
||||
return view('search.index', compact('query', 'excludedWords', 'operators', 'page', 'rule', 'fullQuery', 'subTitle', 'ruleId', 'ruleChanged', 'invalidOperators'));
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user