From 7be3f59613032fd074607234101008e6d9e299dd Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 3 Apr 2026 17:31:36 +0000 Subject: [PATCH] Fix unnecessary escaped single quotes in app.js string literals Agent-Logs-Url: https://github.com/naturallaw777/staging_alpha/sessions/cd52f6a2-250b-49e3-8558-aa2ae7512d1b Co-authored-by: naturallaw777 <99053422+naturallaw777@users.noreply.github.com> --- app/sovran_systemsos_web/static/app.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/sovran_systemsos_web/static/app.js b/app/sovran_systemsos_web/static/app.js index 2be9d48..47e2980 100644 --- a/app/sovran_systemsos_web/static/app.js +++ b/app/sovran_systemsos_web/static/app.js @@ -994,20 +994,20 @@ function openPortRequirementsModal(featureName, ports, onContinue) { var ipLine = internalIp ? '

Forward each port below to this machine\'s internal IP: ' + escHtml(internalIp) + '

' - : '

Forward each port below to this machine\'s internal LAN IP in your router\'s port forwarding settings.

'; + : "

Forward each port below to this machine's internal LAN IP in your router's port forwarding settings.

"; $portReqBody.innerHTML = '

Port Forwarding Required

' + - '

For ' + escHtml(featureName) + ' to work with clients outside your local network, ' + - 'you must configure port forwarding in your router\'s admin panel.

' + + '

For ' + escHtml(featureName) + " to work with clients outside your local network, " + + "you must configure port forwarding in your router's admin panel.

" + ipLine + '' + '' + '' + rows + '' + '
Port(s)ProtocolPurposeStatus
' + - '

How to verify: Router-side forwarding cannot be checked from inside your network. ' + - 'To confirm ports are forwarded correctly, test from a device on a different network (e.g. a phone on mobile data) ' + - 'or check your router\'s port forwarding page.

' + + "

How to verify: Router-side forwarding cannot be checked from inside your network. " + + "To confirm ports are forwarded correctly, test from a device on a different network (e.g. a phone on mobile data) " + + "or check your router's port forwarding page.

" + '

ℹ Search "how to set up port forwarding on [your router model]" for step-by-step instructions.

' + '
' + '' +