Merge pull request #5510 from rubenk/add-roomname-to-title

Add room name to browser tab title
This commit is contained in:
Saúl Ibarra Corretgé 2020-04-01 20:08:05 +02:00 committed by GitHub
commit a21e3a1946
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ class Conference extends AbstractConference<Props, *> {
* @inheritdoc
*/
componentDidMount() {
document.title = interfaceConfig.APP_NAME;
document.title = `${APP.conference.roomName} | ${interfaceConfig.APP_NAME}`;
this._start();
}