mirror of
https://github.com/edumeet/edumeet.git
synced 2026-08-01 15:30:21 +00:00
Add Labels to "Join" and "Login/Logout" buttons
This commit is contained in:
parent
8ffee6b049
commit
3dbd4dc023
1 changed files with 9 additions and 2 deletions
|
|
@ -311,7 +311,14 @@ const JoinDialog = ({
|
|||
</Grid>
|
||||
<Grid item>
|
||||
{ window.config.loginEnabled &&
|
||||
<Tooltip open title={loggedIn ? 'Logout' : 'Login'} placement='left'>
|
||||
<Tooltip
|
||||
open
|
||||
title={intl.formatMessage({
|
||||
id : loggedIn ? 'label.logout' : 'label.login',
|
||||
defaultMessage : loggedIn ? 'Logout' : 'Login'
|
||||
})}
|
||||
placement='left'
|
||||
>
|
||||
<IconButton
|
||||
className={classes.accountButton}
|
||||
onClick={
|
||||
|
|
@ -558,7 +565,7 @@ const JoinDialog = ({
|
|||
id='joinButton'
|
||||
>
|
||||
<FormattedMessage
|
||||
id='room.join'
|
||||
id='label.join'
|
||||
defaultMessage='Join'
|
||||
/>
|
||||
</Button>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue