mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 11:47:23 +03:00
also return Joining when internally busy looking something up
This commit is contained in:
parent
523311b50c
commit
dbb73439e4
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ module.exports = React.createClass({
|
|||
return MessageCase.Joining;
|
||||
} else if (this.props.rejecting) {
|
||||
return MessageCase.Rejecting;
|
||||
} else if (this.props.loading) {
|
||||
} else if (this.props.loading || this.state.busy) {
|
||||
return MessageCase.Loading;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue