Merge pull request #5510 from rubenk/add-roomname-to-title
Add room name to browser tab title
This commit is contained in:
commit
a21e3a1946
|
@ -120,7 +120,7 @@ class Conference extends AbstractConference<Props, *> {
|
||||||
* @inheritdoc
|
* @inheritdoc
|
||||||
*/
|
*/
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
document.title = interfaceConfig.APP_NAME;
|
document.title = `${APP.conference.roomName} | ${interfaceConfig.APP_NAME}`;
|
||||||
this._start();
|
this._start();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue