Commit 1d9925d9 authored by Przemyslaw Kaminski's avatar Przemyslaw Kaminski

[ngrams] don't show pending changes for input search query

parent 6d0e4a5e
......@@ -423,12 +423,11 @@ displayRow state@{ ngramsChildren
ngramsParentRoot
termListFilter
(NgramsElement {ngrams, root, list}) =
(
isNothing root
-- ^ Display only nodes without parents
&& maybe true (_ == list) termListFilter
-- ^ and which matches the ListType filter.
&& queryMatchesLabel searchQuery (ngramsTermText ngrams)
-- ^ and which matches the search query.
&& ngramsChildren ^. at ngrams /= Just true
-- ^ and which are not scheduled to be added already
&& Just ngrams /= ngramsParent
......@@ -439,6 +438,9 @@ displayRow state@{ ngramsChildren
-- ^ unless they are scheduled to be removed.
|| NTC.tablePatchHasNgrams ngramsLocalPatch ngrams
-- ^ unless they are being processed at the moment.
)
&& queryMatchesLabel searchQuery (ngramsTermText ngrams)
-- ^ and which matches the search query.
allNgramsSelectedOnFirstPage :: Set NgramsTerm -> PreConversionRows -> Boolean
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment