diff --git a/web/js/script.js b/web/js/script.js
index c36d8c5..85be716 100644
--- a/web/js/script.js
+++ b/web/js/script.js
@@ -7,7 +7,6 @@ var portal = false;
var portalUrl = "";
var interval = 1000;
var lastStatus = "";
-var stopped = "The container has stopped. Check the container logs for details.";
function abortRequest() {
@@ -512,11 +511,11 @@ function setError(text) {
function setStopped() {
- var msg = "" + stopped + "";
- msg += "Check the container logs for more details.";
+ var msg = "The container has stopped.";
+ msg += "Check the container log for more details.";
if (lastStatus.length > 0) {
- msg += "(Last status: " + escapeContent(lastStatus) + ")";
+ msg += "[ Last status: " + escapeContent(lastStatus) + " ]";
}
return setError(msg);