You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-10 09:22:25 +03:00
Keep registration spinner inside the auth modal
The spinner was taking on the full height of the modal and escaping off the page. This keeps it contained inside the modal. Fixes https://github.com/vector-im/riot-web/issues/8661
This commit is contained in:
@@ -495,7 +495,9 @@ module.exports = React.createClass({
|
||||
poll={true}
|
||||
/>;
|
||||
} else if (this.state.busy || !this.state.flows) {
|
||||
return <Spinner />;
|
||||
return <div className="mx_AuthBody_spinner">
|
||||
<Spinner />
|
||||
</div>;
|
||||
} else {
|
||||
let onEditServerDetailsClick = null;
|
||||
// If custom URLs are allowed and we haven't selected the Free server type, wire
|
||||
|
||||
Reference in New Issue
Block a user