mirror of
https://github.com/vdsm/virtual-dsm.git
synced 2026-08-28 11:56:03 +00:00
fix: Separate stopped container status lines (#1367)
This commit is contained in:
+4
-2
@@ -512,9 +512,11 @@ function setError(text) {
|
||||
|
||||
function setStopped() {
|
||||
|
||||
var msg = stopped;
|
||||
var msg = "<span style=\"display:block\">" + stopped + "</span>";
|
||||
msg += "<span style=\"display:block; margin-top:1em\">Check the container logs for more details.</span>";
|
||||
|
||||
if (lastStatus.length > 0) {
|
||||
msg += "<br>(Last status: " + escapeContent(lastStatus) + ")";
|
||||
msg += "<span style=\"display:block; margin-top:1em\">(Last status: " + escapeContent(lastStatus) + ")</span>";
|
||||
}
|
||||
|
||||
return setError(msg);
|
||||
|
||||
Reference in New Issue
Block a user