diff --git a/manage/filters.js b/manage/filters.js index 8d96b601..1d0eecce 100644 --- a/manage/filters.js +++ b/manage/filters.js @@ -339,7 +339,7 @@ function searchStyles({immediately, container}) { if (!isMatching) { const style = urlMode ? siteStyleIds.has(entry.styleId) : BG.cachedStyles.byId.get(entry.styleId) || {}; - isMatching = urlMode ? style : Boolean(style && ( + isMatching = Boolean(style && (urlMode || isMatchingText(style.name) || style.url && isMatchingText(style.url) || isMatchingStyle(style)));