1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-22 04:02:40 +03:00

Merge pull request #2029 from matrix-org/luke/fix-connection-lost-message-layout

Fix layout bug introduced by #2025
This commit is contained in:
David Baker
2018-06-29 10:49:15 +01:00
committed by GitHub

View File

@@ -374,6 +374,7 @@ module.exports = React.createClass({
return (
<div className="mx_RoomStatusBar_connectionLostBar">
<img src="img/warning.svg" width="24" height="23" title="/!\ " alt="/!\ " />
<div>
<div className="mx_RoomStatusBar_connectionLostBar_title">
{ _t('Connectivity to the server has been lost.') }
</div>
@@ -381,6 +382,7 @@ module.exports = React.createClass({
{ _t('Sent messages will be stored until your connection has returned.') }
</div>
</div>
</div>
);
}