From b5e89c38f8809d6eebce4cced58a1fa0e8537370 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 16 Apr 2026 15:19:16 +0000 Subject: [PATCH] Improve restart fallback error message Agent-Logs-Url: https://github.com/naturallaw777/staging_alpha/sessions/8e6c98f7-8b24-4ec0-944b-0310e0989495 Co-authored-by: naturallaw777 <99053422+naturallaw777@users.noreply.github.com> --- app/sovran_systemsos_web/static/js/service-detail.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/sovran_systemsos_web/static/js/service-detail.js b/app/sovran_systemsos_web/static/js/service-detail.js index ccce67f..1bde524 100644 --- a/app/sovran_systemsos_web/static/js/service-detail.js +++ b/app/sovran_systemsos_web/static/js/service-detail.js @@ -326,7 +326,7 @@ async function openServiceDetailModal(unit, name, icon) { }, RESTART_REFRESH_DELAY_MS); } catch (e) { restartResult.classList.add("error"); - restartResult.textContent = e && e.message ? e.message : "Failed to restart service."; + restartResult.textContent = e && e.message ? e.message : "Failed to restart service. Please check service logs and try again."; restartBtn.disabled = false; restartBtn.textContent = "🔄 Restart Service"; }