formatting

This commit is contained in:
iw0 2024-04-11 10:45:38 +02:00
parent 23572b9a48
commit d21941d306

View File

@ -179,7 +179,7 @@ const matchDropdown = (mut, testName, openOrClose) => {
/**@param {MutationRecord} mut */ /**@param {MutationRecord} mut */
const getDropdownList = (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"); return dd.at(0).querySelector("ul");
} }