Fixes signer errors throwing // MaterialUI Update errors too (#2867) (#2876)

This commit is contained in:
Nicolas Gotchac
2016-10-26 11:56:38 +02:00
committed by Jaco Greeff
parent 3cd724d056
commit c05430e25e
8 changed files with 34 additions and 20 deletions

View File

@@ -25,9 +25,11 @@ export default class Loading extends Component {
};
render () {
const size = (this.props.size || 2) * 60;
return (
<div className={ styles.loading }>
<CircularProgress size={ this.props.size || 2 } />
<CircularProgress size={ size } />
</div>
);
}