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);