Merge pull request #2029 from matrix-org/luke/fix-connection-lost-message-layout
Fix layout bug introduced by #2025
This commit is contained in:
commit
80a9bc3f2a
1 changed files with 7 additions and 5 deletions
|
@ -374,11 +374,13 @@ module.exports = React.createClass({
|
||||||
return (
|
return (
|
||||||
<div className="mx_RoomStatusBar_connectionLostBar">
|
<div className="mx_RoomStatusBar_connectionLostBar">
|
||||||
<img src="img/warning.svg" width="24" height="23" title="/!\ " alt="/!\ " />
|
<img src="img/warning.svg" width="24" height="23" title="/!\ " alt="/!\ " />
|
||||||
<div className="mx_RoomStatusBar_connectionLostBar_title">
|
<div>
|
||||||
{ _t('Connectivity to the server has been lost.') }
|
<div className="mx_RoomStatusBar_connectionLostBar_title">
|
||||||
</div>
|
{ _t('Connectivity to the server has been lost.') }
|
||||||
<div className="mx_RoomStatusBar_connectionLostBar_desc">
|
</div>
|
||||||
{ _t('Sent messages will be stored until your connection has returned.') }
|
<div className="mx_RoomStatusBar_connectionLostBar_desc">
|
||||||
|
{ _t('Sent messages will be stored until your connection has returned.') }
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue