fix: preserve original key structure

This commit is contained in:
karishmas6
2024-08-03 20:45:37 +05:30
parent 39b8cdfbb4
commit eabe62fff7

View File

@@ -229,11 +229,11 @@ window.scrapeSchema = function (lists) {
return MBEs.map((mbe) => omap(
lists,
({ selector }) => {
({ selector }, key) => {
const elem = Array.from(document.querySelectorAll(selector)).find((elem) => mbe.contains(elem));
return elem ? elem.innerText : undefined;
},
(key) => lists[key].selector // Use the selector as the key in the output
(key) => key // Use the original key in the output
));
}