From 6ea8810881f75653e59b8b670f9ec449a82e7cf5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 15 Apr 2026 16:09:23 +0000 Subject: [PATCH] chore: log network fetch failures in port requirements modal Agent-Logs-Url: https://github.com/naturallaw777/staging_alpha/sessions/15310f2a-9bf2-4813-b2be-7462cb923c9c Co-authored-by: naturallaw777 <99053422+naturallaw777@users.noreply.github.com> --- app/sovran_systemsos_web/static/js/features.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/sovran_systemsos_web/static/js/features.js b/app/sovran_systemsos_web/static/js/features.js index 4e3c2b4..924db20 100644 --- a/app/sovran_systemsos_web/static/js/features.js +++ b/app/sovran_systemsos_web/static/js/features.js @@ -274,7 +274,9 @@ function openPortRequirementsModal(featureName, ports, onContinue) { ? data.internal_ip : null; renderPortRequirements(internalIp); }) - .catch(function() {}); + .catch(function(err) { + console.warn("Failed to fetch network info for port requirements modal:", err); + }); } function closePortRequirementsModal() {