Skip to content

Commit

Permalink
IBX-1133: An exception occurred while searching for available content…
Browse files Browse the repository at this point in the history
…s in back office (#2105)
  • Loading branch information
GrabowskiM authored Jul 19, 2023
1 parent 4836b25 commit 22cea7f
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@
filterInput.addEventListener('change', filterItems.bind(filter, itemsMap, groups), false);
filterInput.addEventListener('blur', filterItems.bind(filter, itemsMap, groups), false);
filterInput.addEventListener('keyup', filterItems.bind(filter, itemsMap, groups), false);
filterInput.addEventListener('keydown', (event) => {
if (event.key === 'Enter') {
event.preventDefault();
}
}, false);
};

filters.forEach(initFilter);
Expand Down

0 comments on commit 22cea7f

Please # to comment.