Missed passing run state

pull/2/head
Karl Gutwin 9 years ago
parent 8e0baf0e37
commit 34a3f8186a

@ -6,6 +6,7 @@ angular.module('containersNetwork', ['ngVis'])
// names have the following format: /Name // names have the following format: /Name
this.Name = data.Name.substring(1); this.Name = data.Name.substring(1);
this.Image = data.Config.Image; this.Image = data.Config.Image;
this.Running = data.State.Running;
var dataLinks = data.HostConfig.Links; var dataLinks = data.HostConfig.Links;
if (dataLinks != null) { if (dataLinks != null) {
this.Links = {}; this.Links = {};
@ -42,7 +43,7 @@ angular.module('containersNetwork', ['ngVis'])
"<li><strong>ID:</strong> " + container.Id + "</li>" + "<li><strong>ID:</strong> " + container.Id + "</li>" +
"<li><strong>Image:</strong> " + container.Image + "</li>" + "<li><strong>Image:</strong> " + container.Image + "</li>" +
"</ul>", "</ul>",
color: (container.State.Running ? null : "gray") color: (container.Running ? null : "gray")
}); });
}; };

Loading…
Cancel
Save