瀏覽代碼

Add room name to browser tab title

Fixes #5480

Signed-off-by: Ruben Kerkhof <ruben@rubenkerkhof.com>
master
Ruben Kerkhof 5 年之前
父節點
當前提交
86ebfe8dad
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. 1
    1
      react/features/conference/components/web/Conference.js

+ 1
- 1
react/features/conference/components/web/Conference.js 查看文件

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

Loading…
取消
儲存