From 6b51dc806bb7609256b20329f4ffcb6ca7d66836 Mon Sep 17 00:00:00 2001 From: Gin Date: Thu, 11 May 2023 12:47:01 +0800 Subject: [PATCH] fix chants search issue --- javascript/ext_chants.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript/ext_chants.js b/javascript/ext_chants.js index 583d997..3b004fb 100644 --- a/javascript/ext_chants.js +++ b/javascript/ext_chants.js @@ -8,7 +8,7 @@ class ChantParser extends BaseTagParser { if (tagword !== "<" && tagword !== " x.term.toLowerCase().includes(searchTerm); - tempResults = loras.filter(x => filterCondition(x)); // Filter by tagword + tempResults = chants.filter(x => filterCondition(x)); // Filter by tagword } else { tempResults = chants; }