fix(url handler): escape html

This commit is contained in:
Miodec 2024-05-04 14:12:23 +02:00
parent 876f6c0a0d
commit 856beb434e

View file

@ -189,7 +189,7 @@ export function loadTestSettingsFromUrl(getOverride?: string): void {
Object.keys(applied).forEach((setKey) => {
const set = applied[setKey];
if (set !== undefined) {
appliedString += `${setKey}${set ? ": " + set : ""}<br>`;
appliedString += `${setKey}${Misc.escapeHTML(set ? ": " + set : "")}<br>`;
}
});