From d21941d30632a6a31a705879b8a9576a799c4954 Mon Sep 17 00:00:00 2001 From: iw0 Date: Thu, 11 Apr 2024 10:45:38 +0200 Subject: [PATCH] formatting --- content_script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content_script.js b/content_script.js index 5317b04..a8d3b5d 100644 --- a/content_script.js +++ b/content_script.js @@ -179,7 +179,7 @@ const matchDropdown = (mut, testName, openOrClose) => { /**@param {MutationRecord} mut */ const getDropdownList = (mut) => { - const dd = Array.from(mut.addedNodes).filter(e => e instanceof Element && e.querySelector("ul")!==null); + const dd = Array.from(mut.addedNodes).filter(e => e instanceof Element && e.querySelector("ul") !== null); return dd.at(0).querySelector("ul"); }