1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-16 06:42:26 +03:00

incorporated design feedback

This commit is contained in:
Zoe
2020-03-26 13:47:32 +00:00
parent 9c392ce8bb
commit 04849f7f0d
3 changed files with 6 additions and 6 deletions

View File

@@ -57,10 +57,10 @@ export default class TileErrorBoundary extends React.Component {
return (<div className={classNames(classes)}>
<div className="mx_EventTile_line">
<span>
{_t("An error occurred while rendering this event.")}
{ mxEvent && ` [${mxEvent.getType()}]` }
{_t("Can't load this message")}
{ mxEvent && ` (${mxEvent.getType()})` }
<a onClick={this._onBugReport} href="#">
{_t("Submit debug logs")}
{_t("Submit logs")}
</a>
</span>
</div>