mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 13:14:58 +08:00
b422641258
* Upgrade compound-web I forgot to include this in https://github.com/matrix-org/matrix-react-sdk/pull/12209, which has caused avatar and username colors to be out of sync and sometimes revert to plain black/white. * Update tests * Update tests
56 lines
1.2 KiB
Plaintext
56 lines
1.2 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`<PinnedEventTile /> should render pinned event 1`] = `
|
|
<div>
|
|
<div
|
|
class="mx_PinnedEventTile"
|
|
>
|
|
<span
|
|
class="_avatar_k41ul_17 mx_BaseAvatar mx_PinnedEventTile_senderAvatar _avatar-imageless_k41ul_60"
|
|
data-color="2"
|
|
data-testid="avatar-img"
|
|
data-type="round"
|
|
role="presentation"
|
|
style="--cpd-avatar-size: 24px;"
|
|
>
|
|
a
|
|
</span>
|
|
<span
|
|
class="mx_PinnedEventTile_sender mx_Username_color2"
|
|
>
|
|
@alice:server.org
|
|
</span>
|
|
<div
|
|
class="mx_PinnedEventTile_message"
|
|
>
|
|
<div
|
|
class="mx_MTextBody mx_EventTile_content"
|
|
>
|
|
<span
|
|
class="mx_EventTile_body"
|
|
dir="auto"
|
|
>
|
|
First pinned message
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div
|
|
class="mx_PinnedEventTile_footer"
|
|
>
|
|
<span
|
|
class="mx_MessageTimestamp mx_PinnedEventTile_timestamp"
|
|
>
|
|
Thu, Jan 1, 1970, 00:00
|
|
</span>
|
|
<div
|
|
class="mx_AccessibleButton mx_AccessibleButton_hasKind mx_AccessibleButton_kind_link"
|
|
role="button"
|
|
tabindex="0"
|
|
>
|
|
View message
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
`;
|