You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-20 16:22:28 +03:00
Fix group member spinner being out of flex order
This commit is contained in:
@@ -132,7 +132,9 @@ module.exports = React.createClass({
|
|||||||
render: function() {
|
render: function() {
|
||||||
if (this.state.removingUser) {
|
if (this.state.removingUser) {
|
||||||
const Spinner = sdk.getComponent("elements.Spinner");
|
const Spinner = sdk.getComponent("elements.Spinner");
|
||||||
return <Spinner />;
|
return <div className="mx_MemberInfo">
|
||||||
|
<Spinner />
|
||||||
|
</div>;
|
||||||
}
|
}
|
||||||
|
|
||||||
let adminTools;
|
let adminTools;
|
||||||
|
|||||||
Reference in New Issue
Block a user