From c355cbe5dceef2bf53b430b9429d3784b70bb0c4 Mon Sep 17 00:00:00 2001 From: Kroese Date: Mon, 10 Aug 2026 07:23:35 +0200 Subject: [PATCH] fix: Separate stopped container status lines (#1367) --- web/js/script.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/web/js/script.js b/web/js/script.js index 1f069cc..c36d8c5 100644 --- a/web/js/script.js +++ b/web/js/script.js @@ -512,9 +512,11 @@ function setError(text) { function setStopped() { - var msg = stopped; + var msg = "" + stopped + ""; + msg += "Check the container logs for more details."; + if (lastStatus.length > 0) { - msg += "
(Last status: " + escapeContent(lastStatus) + ")"; + msg += "(Last status: " + escapeContent(lastStatus) + ")"; } return setError(msg);