Updates kick, fixes it after 4b8aae90
.
This commit is contained in:
parent
c4ef7d8601
commit
7de1e6d89e
|
@ -4,14 +4,13 @@ import React from 'react';
|
|||
|
||||
import { translate } from '../../../base/i18n';
|
||||
import { IconKick } from '../../../base/icons';
|
||||
import { connect } from '../../../base/redux';
|
||||
import AbstractKickButton, {
|
||||
type Props
|
||||
} from '../AbstractKickButton';
|
||||
|
||||
import RemoteVideoMenuButton from './RemoteVideoMenuButton';
|
||||
|
||||
declare var interfaceConfig: Object;
|
||||
|
||||
/**
|
||||
* Implements a React {@link Component} which displays a button for kicking out
|
||||
* a participant from the conference.
|
||||
|
@ -56,4 +55,4 @@ class KickButton extends AbstractKickButton {
|
|||
|
||||
_handleClick: () => void
|
||||
}
|
||||
export default translate(KickButton);
|
||||
export default translate(connect()(KickButton));
|
||||
|
|
Loading…
Reference in New Issue