From e23ce99f344014e3bea0f295aa3f98ea88d36cfb Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Thu, 20 Jul 2023 08:05:58 -0400 Subject: [PATCH] Use `, ` when normalizing list of selectors --- src/js/static-filtering-parser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/static-filtering-parser.js b/src/js/static-filtering-parser.js index 77f6cc2a3..e6f620930 100644 --- a/src/js/static-filtering-parser.js +++ b/src/js/static-filtering-parser.js @@ -3478,7 +3478,7 @@ class ExtSelectorCompiler { out.push(this.astSerializePart(part)); break; case 'Selector': - if ( out.length !== 0 ) { out.push(','); } + if ( out.length !== 0 ) { out.push(', '); } break; case 'SelectorList': break;