mirror of https://github.com/vector-im/riot-web
Merge pull request #1884 from matrix-org/luke/fix-glitchy-widget-spinner
Fix issue incorrect positioning with widget loading indicatorpull/21833/head
commit
bcf003757c
|
@ -539,7 +539,11 @@ export default class AppTile extends React.Component {
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
if (this.state.initialising) {
|
if (this.state.initialising) {
|
||||||
appTileBody = loadingElement;
|
appTileBody = (
|
||||||
|
<div className={'mx_AppTileBody ' + (this.state.loading ? 'mx_AppLoading' : '')}>
|
||||||
|
{ loadingElement }
|
||||||
|
</div>
|
||||||
|
);
|
||||||
} else if (this.state.hasPermissionToLoad == true) {
|
} else if (this.state.hasPermissionToLoad == true) {
|
||||||
if (this.isMixedContent()) {
|
if (this.isMixedContent()) {
|
||||||
appTileBody = (
|
appTileBody = (
|
||||||
|
|
Loading…
Reference in New Issue