fix(lobby) display the entire message in the reject notification

This commit is contained in:
Tudor D. Pop 2022-03-24 13:15:30 +02:00 committed by GitHub
parent ccf7939316
commit 18fa56ff1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -556,6 +556,7 @@
"errorMissingPassword": "Please enter the meeting password",
"invalidPassword": "Invalid password",
"joinRejectedMessage": "Your join request was rejected by a moderator.",
"joinRejectedTitle": "Join request rejected.",
"joinTitle": "Join Meeting",
"joinWithPasswordMessage": "Trying to join with password, please wait...",
"joiningMessage": "You'll join the meeting as soon as someone accepts your request",

View File

@ -307,7 +307,8 @@ function _conferenceFailed({ dispatch, getState }, next, action) {
showNotification({
appearance: NOTIFICATION_TYPE.ERROR,
hideErrorSupportLink: true,
titleKey: 'lobby.joinRejectedMessage'
titleKey: 'lobby.joinRejectedTitle',
descriptionKey: 'lobby.joinRejectedMessage'
}, NOTIFICATION_TIMEOUT_TYPE.LONG)
);
}