Fixed lint
parent
311936d21a
commit
ab5893dbdf
|
|
@ -286,14 +286,14 @@ const JoinDialog = ({
|
||||||
fullWidth
|
fullWidth
|
||||||
/>
|
/>
|
||||||
{!room.inLobby && room.overRoomLimit &&
|
{!room.inLobby && room.overRoomLimit &&
|
||||||
<DialogContentText className={classes.red} variant='h6' gutterBottom>
|
<DialogContentText className={classes.red} variant='h6' gutterBottom>
|
||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
id='room.overRoomLimit'
|
id='room.overRoomLimit'
|
||||||
defaultMessage={
|
defaultMessage={
|
||||||
`The room is full. Retry after some time.`
|
'The room is full. Retry after some time.'
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
</DialogContentText>
|
</DialogContentText>
|
||||||
}
|
}
|
||||||
|
|
||||||
</DialogContent>
|
</DialogContent>
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ const initialState =
|
||||||
locked : false,
|
locked : false,
|
||||||
inLobby : false,
|
inLobby : false,
|
||||||
signInRequired : false,
|
signInRequired : false,
|
||||||
overRoomLimit : false,
|
overRoomLimit : false,
|
||||||
// access code to the room if locked and joinByAccessCode == true
|
// access code to the room if locked and joinByAccessCode == true
|
||||||
accessCode : '',
|
accessCode : '',
|
||||||
// if true: accessCode is a possibility to open the room
|
// if true: accessCode is a possibility to open the room
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue