MSRC fixes for testExplorer and HeatMap (#2183)

* MSRC fixes for testExplorer and HeatMap

* MSRC fixes for testExplorer and HeatMap
This commit is contained in:
sunghyunkang1111
2025-07-07 11:00:29 -05:00
committed by GitHub
parent f8231600d6
commit e0edaf405c
9 changed files with 46 additions and 634 deletions

View File

@@ -89,7 +89,7 @@ const initTestExplorer = async (): Promise<void> => {
iframe.setAttribute("data-test", "DataExplorerFrame");
iframe.classList.add("iframe");
iframe.title = "explorer";
iframe.src = iframeSrc;
iframe.src = iframeSrc; // CodeQL [SM03712] Not used in production, only for testing purposes
document.body.appendChild(iframe);
};