Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
dydrmr committed Nov 21, 2024
1 parent 65cfa00 commit df1f080
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/app/UserInterface.js
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ class UserInterface {

const text1 = element.children[0].innerText;
const text2 = element.children[1].innerText.split(' ▸ ').pop();
const text3 = element.children[2];
const text3 = element.children[2].innerText;
const searchText = `${text1} ${text2} ${text3}`;

found[index] = (searchText.toLowerCase().includes(fragment)) ? true : false;
Expand Down

0 comments on commit df1f080

Please sign in to comment.