Add room name to browser tab title

Fixes #5480

Signed-off-by: Ruben Kerkhof <ruben@rubenkerkhof.com>
This commit is contained in:
Ruben Kerkhof 2020-03-30 15:57:54 +02:00
parent 8d0202113a
commit 86ebfe8dad
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();
}