Skip to content

Commit

Permalink
Merge pull request #1616 from NindroidX/bugfix/ppchooser-search
Browse files Browse the repository at this point in the history
[AdminBundle] Fix the extended ppchooser search for IE11
  • Loading branch information
diskwriter committed Nov 20, 2017
2 parents 2b4b2f5 + 5d0bd59 commit 739f5f8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const initSearch = (ppChooser) => {
});

const searchField = ppChooser.querySelector(SELECTORS.PP_SEARCH_FIELD);
ppList = ppChooser.querySelectorAll(SELECTORS.PP_SEARCH_ITEM);
ppList = Array.prototype.slice.call(ppChooser.querySelectorAll(SELECTORS.PP_SEARCH_ITEM));

const fuse = new Fuse(ppTypes, {
keys: [{
Expand Down

0 comments on commit 739f5f8

Please sign in to comment.