From e8705287cc13c5ded5b82285c3236ed3bfbdd930 Mon Sep 17 00:00:00 2001 From: John Mizerek Date: Fri, 20 Feb 2026 16:34:31 -0800 Subject: [PATCH] Fix JS syntax error: remove escaped backticks in addModifierOption The escaped backticks (\`) were causing "invalid escape sequence" error, breaking the entire script and making the Upload Files button non-functional. Co-Authored-By: Claude Opus 4.5 --- portal/setup-wizard.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/portal/setup-wizard.html b/portal/setup-wizard.html index 80567ea..b1b227e 100644 --- a/portal/setup-wizard.html +++ b/portal/setup-wizard.html @@ -2551,11 +2551,11 @@ const container = document.getElementById('newModOptions'); const row = document.createElement('div'); row.className = 'modifier-option-row'; - row.innerHTML = \` + row.innerHTML = ` - \`; + `; container.appendChild(row); }