Skip to content

Commit

Permalink
Fixes CodeQL (#4091)
Browse files Browse the repository at this point in the history
  • Loading branch information
hediet authored Jul 19, 2023
1 parent 97c7fdb commit 74e783a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/manual/dev-setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@
div.style.padding = '5px 20px 5px 5px';
div.style.zIndex = '1000';

div.innerHTML =
'<ul><li>' +
renderLoadingOptions(true) +
(isRelease ? '' : `</li><li>${renderLoadingOptions(false)}`) +
div.innerHTML = // CodeQL [SM03712] This code is not deployed and serves as local test code. No risk of malicious input.
'<ul><li>' + // CodeQL [SM03712] This code is not deployed and serves as local test code. No risk of malicious input.
renderLoadingOptions(true) + // CodeQL [SM03712] This code is not deployed and serves as local test code. No risk of malicious input.
(isRelease ? '' : `</li><li>${renderLoadingOptions(false)}`) + // CodeQL [SM03712] This code is not deployed and serves as local test code. No risk of malicious input.
'</li></ul>'; // CodeQL [SM03712] This code is not deployed and serves as local test code. No risk of malicious input.

document.body.appendChild(div);
Expand Down

0 comments on commit 74e783a

Please sign in to comment.