Fixed bug where an error pulling repos would instead show an unrelated 404 error

This commit is contained in:
Jeffrey Morgan 2015-06-04 19:08:41 -07:00
parent ce2452bffd
commit 4d82006b57
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ var ContainerHome = React.createClass({
body = (
<div className="details-progress">
<h3>An error occurred:</h3>
<h2>{this.props.container.Error.message}</h2>
<h2>{this.props.container.Error}</h2>
<h3>If you feel that this error is invalid, please <a onClick={this.handleErrorClick}>file a ticket on our GitHub repo.</a></h3>
<Radial progress={100} error={true} thick={true} transparent={true}/>
</div>