Wrap in ()

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
pull/21833/head
Šimon Brandner 2021-08-06 10:30:38 +02:00
parent 85f5ec3a94
commit 186acf92a9
No known key found for this signature in database
GPG Key ID: CC823428E9B582FB
1 changed files with 62 additions and 60 deletions

View File

@ -63,7 +63,8 @@ export default class LayoutSwitcher extends React.Component<IProps, IState> {
mx_AppearanceUserSettingsTab_Layout_RadioButton_selected: this.state.layout === Layout.Bubble, mx_AppearanceUserSettingsTab_Layout_RadioButton_selected: this.state.layout === Layout.Bubble,
}); });
return <div className="mx_SettingsTab_section mx_AppearanceUserSettingsTab_Layout"> return (
<div className="mx_SettingsTab_section mx_AppearanceUserSettingsTab_Layout">
<span className="mx_SettingsTab_subheading"> <span className="mx_SettingsTab_subheading">
{ _t("Message layout") } { _t("Message layout") }
</span> </span>
@ -124,6 +125,7 @@ export default class LayoutSwitcher extends React.Component<IProps, IState> {
</StyledRadioButton> </StyledRadioButton>
</label> </label>
</div> </div>
</div>; </div>
);
} }
} }