Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit a7f1a0c

Browse files
authored
Fix 'Logout' inline link on the splash screen (#8770)
Signed-off-by: Suguru Hirahara <[email protected]>
1 parent 125a265 commit a7f1a0c

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/components/structures/MatrixChat.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2012,9 +2012,11 @@ export default class MatrixChat extends React.PureComponent<IProps, IState> {
20122012
<div className="mx_MatrixChat_splash">
20132013
{ errorBox }
20142014
<Spinner />
2015-
<AccessibleButton kind='link_inline' className="mx_MatrixChat_splashButtons" onClick={this.onLogoutClick}>
2016-
{ _t('Logout') }
2017-
</AccessibleButton>
2015+
<div className="mx_MatrixChat_splashButtons">
2016+
<AccessibleButton kind='link_inline' onClick={this.onLogoutClick}>
2017+
{ _t('Logout') }
2018+
</AccessibleButton>
2019+
</div>
20182020
</div>
20192021
);
20202022
}

0 commit comments

Comments
 (0)