Browse Source

Updates kick, fixes it after 4b8aae90.

j8
damencho 4 years ago
parent
commit
7de1e6d89e
1 changed files with 2 additions and 3 deletions
  1. 2
    3
      react/features/remote-video-menu/components/web/KickButton.js

+ 2
- 3
react/features/remote-video-menu/components/web/KickButton.js View File

@@ -4,14 +4,13 @@ import React from 'react';
4 4
 
5 5
 import { translate } from '../../../base/i18n';
6 6
 import { IconKick } from '../../../base/icons';
7
+import { connect } from '../../../base/redux';
7 8
 import AbstractKickButton, {
8 9
     type Props
9 10
 } from '../AbstractKickButton';
10 11
 
11 12
 import RemoteVideoMenuButton from './RemoteVideoMenuButton';
12 13
 
13
-declare var interfaceConfig: Object;
14
-
15 14
 /**
16 15
  * Implements a React {@link Component} which displays a button for kicking out
17 16
  * a participant from the conference.
@@ -56,4 +55,4 @@ class KickButton extends AbstractKickButton {
56 55
 
57 56
     _handleClick: () => void
58 57
 }
59
-export default translate(KickButton);
58
+export default translate(connect()(KickButton));

Loading…
Cancel
Save