From 1ff31e0ccd5fcab0bcaed1c90ed1b98df1924c85 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Wed, 24 May 2023 20:12:28 -0400 Subject: [PATCH] Expand "uBlock filters" by default --- src/js/3p-filters.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/3p-filters.js b/src/js/3p-filters.js index 940cc5624..c111e1a5d 100644 --- a/src/js/3p-filters.js +++ b/src/js/3p-filters.js @@ -675,7 +675,7 @@ dom.on('.searchbar input', 'input', searchFilterLists); /******************************************************************************/ -const expandedListSet = new Set(); +const expandedListSet = new Set([ 'uBlock filters' ]); const listIsExpanded = which => { return expandedListSet.has(which);