fix(toolbar): the conference obj is needed to submit feedback

This commit is contained in:
Leonard Kim 2018-03-30 11:24:32 -07:00 committed by Дамян Минков
parent e7223c49ef
commit 358ce0799e
1 changed files with 3 additions and 1 deletions

View File

@ -385,7 +385,9 @@ class ToolboxV2 extends Component<Props, State> {
* @returns {void} * @returns {void}
*/ */
_doOpenFeedback() { _doOpenFeedback() {
this.props.dispatch(openFeedbackDialog()); const { _conference } = this.props;
this.props.dispatch(openFeedbackDialog(_conference));
} }
/** /**