1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-30 05:31:58 +02:00

coa fixes and bug report

This commit is contained in:
diminator 2015-07-22 00:30:51 +02:00
parent 6c3868616b
commit 742c1bc6e0
3 changed files with 13 additions and 0 deletions

View File

@ -26,7 +26,9 @@ class CoaActions {
this.actions.updateCoa(res.coa);
})
.catch((err) => {
console.log(err)
console.logGlobal(err);
this.actions.updateCoa('Something went wrong, please try again later.');
});
}
}

View File

@ -428,6 +428,13 @@ let CoaDetails = React.createClass({
</div>
);
}
else if (typeof this.state.coa === 'string'){
return (
<div className="text-center">
{this.state.coa}
</div>
);
}
return (
<div className="text-center">
<img src={AppConstants.baseUrl + 'static/img/ascribe_animated_medium.gif'} />

View File

@ -13,6 +13,10 @@ class CoaStore {
onUpdateCoa(coa) {
this.coa = coa;
}
onErrorCoa(err) {
this.coa = {};
//this.coa = err
}
}
export default alt.createStore(CoaStore, 'CoaStore');