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-31 13:58:12 +02:00
parent 8d0202113a
commit 86ebfe8dad
@@ -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();
}