Browse Source

fix(prejoin) fix background selection not being available for 3rd party apps

master
Tudor-Ovidiu Avram 4 years ago
parent
commit
9d0c6e3741
1 changed files with 6 additions and 1 deletions
  1. 6
    1
      react/features/prejoin/components/PrejoinApp.js

+ 6
- 1
react/features/prejoin/components/PrejoinApp.js View File

6
 
6
 
7
 import { BaseApp } from '../../../features/base/app';
7
 import { BaseApp } from '../../../features/base/app';
8
 import { setConfig } from '../../base/config';
8
 import { setConfig } from '../../base/config';
9
+import { DialogContainer } from '../../base/dialog';
9
 import { createPrejoinTracks } from '../../base/tracks';
10
 import { createPrejoinTracks } from '../../base/tracks';
10
 import { getConferenceOptions } from '../../conference/functions';
11
 import { getConferenceOptions } from '../../conference/functions';
11
 import { initPrejoin, makePrecallTest } from '../actions';
12
 import { initPrejoin, makePrecallTest } from '../actions';
99
      * @returns {React$Element}
100
      * @returns {React$Element}
100
      */
101
      */
101
     _renderDialogContainer() {
102
     _renderDialogContainer() {
102
-        return null;
103
+        return (
104
+            <AtlasKitThemeProvider mode = 'dark'>
105
+                <DialogContainer />
106
+            </AtlasKitThemeProvider>
107
+        );
103
     }
108
     }
104
 }
109
 }

Loading…
Cancel
Save