Center loading spinner.

This commit is contained in:
Richard Lewis 2018-03-13 10:07:49 +00:00
parent a81269cba8
commit de33294000

View file

@ -496,7 +496,7 @@ export default class AppTile extends React.Component {
if (this.props.show) { if (this.props.show) {
const loadingElement = ( const loadingElement = (
<div className='mx_AppTileBody mx_AppLoading'> <div>
<MessageSpinner msg='Loading...' /> <MessageSpinner msg='Loading...' />
</div> </div>
); );
@ -511,7 +511,7 @@ export default class AppTile extends React.Component {
); );
} else { } else {
appTileBody = ( appTileBody = (
<div className={this.state.loading ? 'mx_AppTileBody mx_AppLoading' : 'mx_AppTileBody'}> <div className={'mx_AppTileBody ' + (this.state.loading ? 'mx_AppLoading' : '')}>
{ this.state.loading && loadingElement } { this.state.loading && loadingElement }
{ /* { /*
The "is" attribute in the following iframe tag is needed in order to enable rendering of the The "is" attribute in the following iframe tag is needed in order to enable rendering of the