Changed wording.

This commit is contained in:
Sean Li 2015-02-09 09:37:25 -08:00
parent 41e2d08d65
commit ae665d4a44
1 changed files with 2 additions and 2 deletions

View File

@ -417,14 +417,14 @@ var ContainerDetails = React.createClass({
if (this.state.progress) { if (this.state.progress) {
body = ( body = (
<div className="details-progress"> <div className="details-progress">
<h2>Downloading</h2> <h2>Downloading Image</h2>
<Radial progress={Math.round(this.state.progress * 100)}/> <Radial progress={Math.round(this.state.progress * 100)}/>
</div> </div>
); );
} else { } else {
body = ( body = (
<div className="details-progress"> <div className="details-progress">
<h2>Connecting</h2> <h2>Connecting to Docker Hub</h2>
<Radial spin="true" progress="90"/> <Radial spin="true" progress="90"/>
</div> </div>
); );