Fix 'Logout' inline link on the splash screen (#8770)
Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com>
This commit is contained in:
parent
125a265806
commit
a7f1a0c4f8
1 changed files with 5 additions and 3 deletions
|
@ -2012,9 +2012,11 @@ export default class MatrixChat extends React.PureComponent<IProps, IState> {
|
||||||
<div className="mx_MatrixChat_splash">
|
<div className="mx_MatrixChat_splash">
|
||||||
{ errorBox }
|
{ errorBox }
|
||||||
<Spinner />
|
<Spinner />
|
||||||
<AccessibleButton kind='link_inline' className="mx_MatrixChat_splashButtons" onClick={this.onLogoutClick}>
|
<div className="mx_MatrixChat_splashButtons">
|
||||||
{ _t('Logout') }
|
<AccessibleButton kind='link_inline' onClick={this.onLogoutClick}>
|
||||||
</AccessibleButton>
|
{ _t('Logout') }
|
||||||
|
</AccessibleButton>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue