diff --git a/src/components/ContainerDetailsSubheader.react.js b/src/components/ContainerDetailsSubheader.react.js index 556f9bc3b2..6129de5c01 100644 --- a/src/components/ContainerDetailsSubheader.react.js +++ b/src/components/ContainerDetailsSubheader.react.js @@ -59,7 +59,7 @@ var ContainerDetailsSubheader = React.createClass({ if (!this.props.container) { return false; } - return (this.props.container.State.Downloading || this.props.container.State.ExitCode); + return (this.props.container.State.Downloading || this.props.container.State.ExitCode || !this.props.container.State.Running); }, disableStart: function () { if (!this.props.container) {