From df7168f49cca6d814a8c6ccbcd3c4bbab76f0ea9 Mon Sep 17 00:00:00 2001 From: Zoltan The DM Date: Wed, 6 Dec 2023 17:56:39 -0800 Subject: [PATCH] fixed lint error --- src/module/compendium-browser.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/module/compendium-browser.js b/src/module/compendium-browser.js index ea59acb..d728335 100644 --- a/src/module/compendium-browser.js +++ b/src/module/compendium-browser.js @@ -1835,8 +1835,8 @@ class CompendiumBrowser extends Application { return Object.keys(MAP_THING).includes(name); }; - //searches in a similar way to how tidy sheets does it. - //probably should just use actor data instead of going through the html + // searches in a similar way to how tidy sheets does it. + // probably should just use actor data instead of going through the html html.find(".inventory-list.features-list .item-list").filter(function () { // find any section that is searchable return isSearchable($(this.previousElementSibling).find("h3.item-name")[0].innerText)