Skip to content

Commit

Permalink
Regression: All users in members list showing as federated (#26129)
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriellsh authored Jul 5, 2022
1 parent 677d777 commit c53c3ef
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const MemberItem = ({ _id, name, username, federated, onClickView, rid, r
<OptionAvatar>
<UserAvatar username={username || ''} size='x28' />
</OptionAvatar>
<OptionColumn>{federated ? <ReactiveUserStatus uid={_id} /> : <Icon name='globe' size='x16' />}</OptionColumn>
<OptionColumn>{federated ? <Icon name='globe' size='x16' /> : <ReactiveUserStatus uid={_id} />}</OptionColumn>
<OptionContent data-qa={`MemberItem-${username}`}>
{name} <OptionDescription>({username})</OptionDescription>
</OptionContent>
Expand Down

0 comments on commit c53c3ef

Please sign in to comment.