|
@@ -3,9 +3,10 @@ import { connect } from 'react-redux';
|
3
|
3
|
import PropTypes from 'prop-types';
|
4
|
4
|
|
5
|
5
|
import { getInviteURL } from '../../base/connection';
|
|
6
|
+import { openDialog } from '../../base/dialog';
|
6
|
7
|
import { translate } from '../../base/i18n';
|
7
|
8
|
|
8
|
|
-import { openAddPeopleDialog } from '../actions';
|
|
9
|
+import AddPeopleDialog from './AddPeopleDialog';
|
9
|
10
|
|
10
|
11
|
const logger = require('jitsi-meet-logger').getLogger(__filename);
|
11
|
12
|
|
|
@@ -157,7 +158,7 @@ class InfoDialog extends Component {
|
157
|
158
|
* @returns {void}
|
158
|
159
|
*/
|
159
|
160
|
_onOpenInviteDialog() {
|
160
|
|
- this.props.dispatch(openAddPeopleDialog());
|
|
161
|
+ this.props.dispatch(openDialog(AddPeopleDialog));
|
161
|
162
|
|
162
|
163
|
if (this.props.onClose) {
|
163
|
164
|
this.props.onClose();
|