Skip to content

Commit

Permalink
Merge pull request #1922 from thostetler/fix-highlights-typo
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
ehenneken committed Sep 16, 2019
2 parents f93c26e + 4ff3f40 commit 3e8f29f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/widgets/list_of_things/widget.js
Expand Up @@ -429,7 +429,7 @@ define([
q.unset('hl.fl');
q.unset('hl.maxAnalyzedChars');
q.unset('hl.requireFieldMatch');
q.unset('hl.userPhraseHighlighter');
q.unset('hl.usePhraseHighlighter');
q.set('__fetch_missing', 'true');
q.set('start', start);
q.set('rows', perPage - start <= 0 ? perPage : perPage - start);
Expand All @@ -453,7 +453,7 @@ define([
'hl.fl': 'title,abstract,body,ack',
'hl.maxAnalyzedChars': '150000',
'hl.requireFieldMatch': 'true',
'hl.userPhraseHighlighter': 'true',
'hl.usePhraseHighlighter': 'true',
start: pageStart + start,
rows: rows
});
Expand Down

0 comments on commit 3e8f29f

Please sign in to comment.