fix reading Set length

This commit is contained in:
Germain Souquet 2021-05-27 09:05:51 +01:00
parent 2d15d66df8
commit fbb6a42d86

View file

@ -190,8 +190,8 @@ export default class UserMenu extends React.Component<IProps, IState> {
} }
} }
get hasPendingActions(): boolean { get pendingActionsCount(): number {
return Array.from(this.state.pendingRoomJoin).length > 0; return Array.from(this.state.pendingRoomJoin).length;
} }
private onOpenMenuClick = (ev: React.MouseEvent) => { private onOpenMenuClick = (ev: React.MouseEvent) => {
@ -655,11 +655,11 @@ export default class UserMenu extends React.Component<IProps, IState> {
/> />
</span> </span>
{name} {name}
{this.hasPendingActions && ( {this.pendingActionsCount > 0 && (
<InlineSpinner> <InlineSpinner>
<TooltipButton helpText={_t( <TooltipButton helpText={_t(
"Currently joining %(count)s rooms", "Currently joining %(count)s rooms",
{ count: this.state.pendingRoomJoin.length }, { count: this.pendingActionsCount },
)} /> )} />
</InlineSpinner> </InlineSpinner>
)} )}