mirror of https://github.com/vector-im/riot-web
Merge pull request #1321 from matrix-org/rxl881/warnings
Only render appTile body (including warnings) if drawer shown.pull/21833/head
commit
388d8141ae
|
@ -223,6 +223,7 @@ export default React.createClass({
|
|||
safeWidgetUrl = url.format(parsedWidgetUrl);
|
||||
}
|
||||
|
||||
if (this.props.show) {
|
||||
if (this.state.loading) {
|
||||
appTileBody = (
|
||||
<div className='mx_AppTileBody mx_AppLoading'>
|
||||
|
@ -238,7 +239,7 @@ export default React.createClass({
|
|||
/>
|
||||
</div>
|
||||
);
|
||||
} else if (this.props.show) {
|
||||
} else {
|
||||
appTileBody = (
|
||||
<div className="mx_AppTileBody">
|
||||
<iframe
|
||||
|
@ -260,6 +261,7 @@ export default React.createClass({
|
|||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
// editing is done in scalar
|
||||
const showEditButton = Boolean(this._scalarClient && this._canUserModify());
|
||||
|
|
Loading…
Reference in New Issue