From 014169f84e53a2617ec78e96da1f92766cc0fd7a Mon Sep 17 00:00:00 2001 From: KoalaDev <6156589+Shik3i@users.noreply.github.com> Date: Tue, 2 Jun 2026 07:51:01 +0200 Subject: [PATCH] Potential fix for code scanning alert no. 2: DOM text reinterpreted as HTML Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --- website/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/app.js b/website/app.js index ed4497e..fcaa4d1 100644 --- a/website/app.js +++ b/website/app.js @@ -555,7 +555,7 @@ document.addEventListener('DOMContentLoaded', () => { const user = this.getAttribute('data-user'); const domain = this.getAttribute('data-domain'); if (user && domain) { - this.innerHTML = `${user}@${domain}`; + this.textContent = `${user}@${domain}`; } }); });