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

Loading…
Cancel
Save