fix message indent in thread view (#8462)
Signed-off-by: Kerry Archibald <kerrya@element.io> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
fdb78a9c87
commit
12af3038a8
3 changed files with 3 additions and 4 deletions
|
@ -886,7 +886,6 @@ $threadInfoLineHeight: calc(2 * $font-12px); // See: _commons.scss
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
.mx_EventTile_content,
|
.mx_EventTile_content,
|
||||||
.mx_EventTile_body,
|
|
||||||
.mx_HiddenBody,
|
.mx_HiddenBody,
|
||||||
.mx_RedactedBody,
|
.mx_RedactedBody,
|
||||||
.mx_UnknownBody,
|
.mx_UnknownBody,
|
||||||
|
|
|
@ -96,7 +96,7 @@ export const LocationBodyFallbackContent: React.FC<{ event: MatrixEvent, error:
|
||||||
(_t('Shared their location: ') + event.getContent()?.body) :
|
(_t('Shared their location: ') + event.getContent()?.body) :
|
||||||
(_t('Shared a location: ') + event.getContent()?.body);
|
(_t('Shared a location: ') + event.getContent()?.body);
|
||||||
|
|
||||||
return <div className="mx_EventTile_body">
|
return <div className="mx_EventTile_body mx_MLocationBody">
|
||||||
<span className={errorType !== LocationShareError.MapStyleUrlNotConfigured ? "mx_EventTile_tileError" : ''}>
|
<span className={errorType !== LocationShareError.MapStyleUrlNotConfigured ? "mx_EventTile_tileError" : ''}>
|
||||||
{ message }
|
{ message }
|
||||||
</span>
|
</span>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
exports[`MLocationBody <MLocationBody> with error displays correct fallback content when map_style_url is misconfigured 1`] = `
|
exports[`MLocationBody <MLocationBody> with error displays correct fallback content when map_style_url is misconfigured 1`] = `
|
||||||
<div
|
<div
|
||||||
className="mx_EventTile_body"
|
className="mx_EventTile_body mx_MLocationBody"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
className="mx_EventTile_tileError"
|
className="mx_EventTile_tileError"
|
||||||
|
@ -16,7 +16,7 @@ exports[`MLocationBody <MLocationBody> with error displays correct fallback cont
|
||||||
|
|
||||||
exports[`MLocationBody <MLocationBody> with error displays correct fallback content without error style when map_style_url is not configured 1`] = `
|
exports[`MLocationBody <MLocationBody> with error displays correct fallback content without error style when map_style_url is not configured 1`] = `
|
||||||
<div
|
<div
|
||||||
className="mx_EventTile_body"
|
className="mx_EventTile_body mx_MLocationBody"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
className=""
|
className=""
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue