fix: do not trim search term

This commit is contained in:
relikd
2024-02-29 03:27:07 +01:00
parent 9d7f82ff10
commit a0033f28c5

View File

@@ -87,7 +87,7 @@ function saveConfig() {
*/
function applySearch() {
const term = document.getElementById('search').value.trim().toLowerCase();
const term = document.getElementById('search').value.toLowerCase();
const bundle = document.getElementById('bundleid').value.trim().toLowerCase();
const unique = document.getElementById('unique').checked;
const minos = document.getElementById('minos').value;