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

Commit

Permalink
Fix 'Logout' inline link on the splash screen (#8770)
Browse files Browse the repository at this point in the history
Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com>
  • Loading branch information
luixxiul authored Jun 6, 2022
1 parent 125a265 commit a7f1a0c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/components/structures/MatrixChat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2012,9 +2012,11 @@ export default class MatrixChat extends React.PureComponent<IProps, IState> {
<div className="mx_MatrixChat_splash">
{ errorBox }
<Spinner />
<AccessibleButton kind='link_inline' className="mx_MatrixChat_splashButtons" onClick={this.onLogoutClick}>
{ _t('Logout') }
</AccessibleButton>
<div className="mx_MatrixChat_splashButtons">
<AccessibleButton kind='link_inline' onClick={this.onLogoutClick}>
{ _t('Logout') }
</AccessibleButton>
</div>
</div>
);
}
Expand Down

0 comments on commit a7f1a0c

Please sign in to comment.