Send hidden but checked items to solr; there's no way to know ahead of
time if the result set will have changed, where the currently hidden item becomes valid.
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -450,7 +450,7 @@ define(function(require) { | ... | @@ -450,7 +450,7 @@ define(function(require) { |
450 | facetValues.push(rangeFormatter(queryMin, queryMax)); | 450 | facetValues.push(rangeFormatter(queryMin, queryMax)); |
451 | } | 451 | } |
452 | this.get('items').each(function(item, index) { | 452 | this.get('items').each(function(item, index) { |
453 | if (!item.get('hidden') && item.get('checked')) { | 453 | if (item.get('checked')) { |
454 | facetValues.push(valueFormatter(item)); | 454 | facetValues.push(valueFormatter(item)); |
455 | } | 455 | } |
456 | }); | 456 | }); | ... | ... |
-
Please register or sign in to post a comment