Skip to content
This repository has been archived by the owner on Feb 25, 2023. It is now read-only.

Commit

Permalink
fix ignoreElements in QueryParser
Browse files Browse the repository at this point in the history
  • Loading branch information
siikamiika committed Apr 11, 2020
1 parent 6b47f80 commit 880bfe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/bg/js/search-query-parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

class QueryParser extends TextScanner {
constructor({getOptionsContext, setContent, setSpinnerVisible}) {
super(document.querySelector('#query-parser-content'), [], []);
super(document.querySelector('#query-parser-content'), () => [], []);

this.getOptionsContext = getOptionsContext;
this.setContent = setContent;
Expand Down

0 comments on commit 880bfe6

Please sign in to comment.