diff --git a/src/ContainerList.react.js b/src/ContainerList.react.js
index d2954dc603..aca50faa7c 100644
--- a/src/ContainerList.react.js
+++ b/src/ContainerList.react.js
@@ -19,15 +19,9 @@ var ContainerList = React.createClass({
);
});
- var newItem;
- if (!this.props.downloading) {
- newItem = ;
- } else {
- newItem = '';
- }
return (
- {newItem}
+
{containers}
);
diff --git a/src/Containers.react.js b/src/Containers.react.js
index c0275e22cd..b75d9ea4c9 100644
--- a/src/Containers.react.js
+++ b/src/Containers.react.js
@@ -164,17 +164,6 @@ var Containers = React.createClass({
);
}
- var button;
- if (this.state.downloading) {
- button = (
- Only one Docker image can be downloaded at a time.}>
-
-
- );
- } else {
- button = ;
- }
-
var container = this.context.router.getCurrentParams().name ? this.state.containers[this.context.router.getCurrentParams().name] : {};
return (
@@ -184,7 +173,7 @@ var Containers = React.createClass({