1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-21 14:29:40 +02:00

Have to provide a color

This commit is contained in:
Karl Gutwin 2015-08-12 16:22:31 -04:00
parent 34a3f8186a
commit 3db2008c39

View file

@ -43,7 +43,7 @@ angular.module('containersNetwork', ['ngVis'])
"<li><strong>ID:</strong> " + container.Id + "</li>" +
"<li><strong>Image:</strong> " + container.Image + "</li>" +
"</ul>",
color: (container.Running ? null : "gray")
color: (container.Running ? "cyan" : "gray")
});
};