From a0033f28c5ff0a018b1e7714217f6bdebcc1c2a4 Mon Sep 17 00:00:00 2001 From: relikd Date: Thu, 29 Feb 2024 03:27:07 +0100 Subject: [PATCH] fix: do not trim search term --- script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script.js b/script.js index 9cccb600..bd12a138 100644 --- a/script.js +++ b/script.js @@ -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;