mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-29 03:49:28 +08:00
6aa86a858f
* Fixes read receipt avatar offset Fixes https://github.com/vector-im/element-web/issues/26059 * Fix avatar collapsing in thread list Fixes https://github.com/vector-im/element-web/issues/26064 * Make composer pills use new avatar design Fixes https://github.com/vector-im/element-web/issues/26067 * Update snapshots * Update UserInfo snapshot * Update HTMLExport snapshot * Fixes avatar placeholder font Fixes https://github.com/vector-im/element-web/issues/26061
50 lines
1023 B
Plaintext
50 lines
1023 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`RoomAvatar should render as expected for a DM room 1`] = `
|
|
<div>
|
|
<span
|
|
class="_avatar_2lhia_17 mx_BaseAvatar _avatar-imageless_2lhia_56"
|
|
data-color="1"
|
|
data-testid="avatar-img"
|
|
data-type="round"
|
|
role="presentation"
|
|
style="--cpd-avatar-size: 36px;"
|
|
title=""
|
|
>
|
|
D
|
|
</span>
|
|
</div>
|
|
`;
|
|
|
|
exports[`RoomAvatar should render as expected for a LocalRoom 1`] = `
|
|
<div>
|
|
<span
|
|
class="_avatar_2lhia_17 mx_BaseAvatar _avatar-imageless_2lhia_56"
|
|
data-color="7"
|
|
data-testid="avatar-img"
|
|
data-type="round"
|
|
role="presentation"
|
|
style="--cpd-avatar-size: 36px;"
|
|
title=""
|
|
>
|
|
l
|
|
</span>
|
|
</div>
|
|
`;
|
|
|
|
exports[`RoomAvatar should render as expected for a Room 1`] = `
|
|
<div>
|
|
<span
|
|
class="_avatar_2lhia_17 mx_BaseAvatar _avatar-imageless_2lhia_56"
|
|
data-color="2"
|
|
data-testid="avatar-img"
|
|
data-type="round"
|
|
role="presentation"
|
|
style="--cpd-avatar-size: 36px;"
|
|
title=""
|
|
>
|
|
t
|
|
</span>
|
|
</div>
|
|
`;
|