Merge pull request #285 from RubenPX/fix/lots-search

hotfix lots search not working
This commit is contained in:
Santiago L 2022-06-02 13:25:34 +02:00 committed by GitHub
commit 78f9c269a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 5 deletions

View File

@ -348,10 +348,12 @@ class lotsSearcher {
const lots = this.getListLots();
for (let i = 0; i < lots.length; i++) {
const lot = lots[i];
if (lot.innerText.toLowerCase().includes(inputSearch.toLowerCase())) {
lot.parentElement.style.display = "";
lot.style.display = "";
} else {
lot.parentElement.style.display = "none";
lot.style.display = "none";
}
}
}
@ -363,7 +365,7 @@ _defineProperty(lotsSearcher, "lots", []);
_defineProperty(lotsSearcher, "lotsSearchElement", null);
_defineProperty(lotsSearcher, "getListLots", () => {
let lotsList = document.getElementById("LotsSelector");
const lotsList = document.getElementById("LotsSelector");
if (lotsList) {
// Apply filter to get only labels

View File

@ -345,10 +345,11 @@ class lotsSearcher {
static doSearch(inputSearch) {
const lots = this.getListLots();
for (let i = 0; i < lots.length; i++) {
const lot = lots[i]
if (lot.innerText.toLowerCase().includes(inputSearch.toLowerCase())) {
lot.parentElement.style.display = "";
lot.style.display = "";
} else {
lot.parentElement.style.display = "none";
lot.style.display = "none";
}
}
}