Fix 'Logout' inline link on the splash screen (#8770)

Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com>
pull/28217/head
Suguru Hirahara 2022-06-06 07:00:16 +00:00 committed by GitHub
parent 125a265806
commit a7f1a0c4f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions

View File

@ -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>
);
}