diff --git a/src/ContainerList.react.js b/src/ContainerList.react.js index 1d6d25a034..9b1dcf9cb4 100644 --- a/src/ContainerList.react.js +++ b/src/ContainerList.react.js @@ -9,8 +9,14 @@ var ContainerList = React.createClass({ render: function () { var self = this; var containers = this.props.containers.map(function (container) { + var container_id = container.Id; + if (!container_id && container.State.Downloading) { + // Fall back to the container image name when there is no id. (when the + // image is downloading). + container_id = container.Image; + } return ( - + ); }); var newItem;