d551469543
* Fix performance issues with useRoomMembers With the current implementation it would create a new function, with leading: true, rendering the whole throttling useless * Add public room indicator * Format room members count better * Add public room test * Add search to room summary card * Update settings UI * Update snapshot * Remove default title attribute
35 lines
840 B
Text
35 lines
840 B
Text
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`<UserMenu> when rendered should render as expected 1`] = `
|
|
<div>
|
|
<div
|
|
class="mx_UserMenu"
|
|
>
|
|
<div
|
|
aria-expanded="false"
|
|
aria-haspopup="true"
|
|
aria-label="User menu"
|
|
class="mx_AccessibleButton mx_UserMenu_contextMenuButton"
|
|
role="button"
|
|
tabindex="0"
|
|
title="User menu"
|
|
>
|
|
<div
|
|
class="mx_UserMenu_userAvatar"
|
|
>
|
|
<span
|
|
class="_avatar_2lhia_17 mx_BaseAvatar mx_UserMenu_userAvatar_BaseAvatar _avatar-imageless_2lhia_56"
|
|
data-color="2"
|
|
data-testid="avatar-img"
|
|
data-type="round"
|
|
role="presentation"
|
|
style="--cpd-avatar-size: 32px;"
|
|
title="@userId:matrix.org"
|
|
>
|
|
u
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
`;
|