mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-28 19:38:48 +08:00
30 lines
897 B
Plaintext
30 lines
897 B
Plaintext
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||
|
|
||
|
exports[`MLocationBody <MLocationBody> with error displays correct fallback content when map_style_url is misconfigured 1`] = `
|
||
|
<div
|
||
|
className="mx_EventTile_body"
|
||
|
>
|
||
|
<span
|
||
|
className="mx_EventTile_tileError"
|
||
|
>
|
||
|
Unable to load map: This homeserver is not configured correctly to display maps, or the configured map server may be unreachable.
|
||
|
</span>
|
||
|
<br />
|
||
|
Shared a location: Found at geo:51.5076,-0.1276 at 2021-12-21T12:22+0000
|
||
|
</div>
|
||
|
`;
|
||
|
|
||
|
exports[`MLocationBody <MLocationBody> with error displays correct fallback content without error style when map_style_url is not configured 1`] = `
|
||
|
<div
|
||
|
className="mx_EventTile_body"
|
||
|
>
|
||
|
<span
|
||
|
className=""
|
||
|
>
|
||
|
Unable to load map: This homeserver is not configured to display maps.
|
||
|
</span>
|
||
|
<br />
|
||
|
Shared a location: Found at geo:51.5076,-0.1276 at 2021-12-21T12:22+0000
|
||
|
</div>
|
||
|
`;
|