From 358ce0799eb7f7da08702e9de3276eff9a141bb9 Mon Sep 17 00:00:00 2001 From: Leonard Kim Date: Fri, 30 Mar 2018 11:24:32 -0700 Subject: [PATCH] fix(toolbar): the conference obj is needed to submit feedback --- react/features/toolbox/components/ToolboxV2.web.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/react/features/toolbox/components/ToolboxV2.web.js b/react/features/toolbox/components/ToolboxV2.web.js index ad2f26e80..9abcb05b0 100644 --- a/react/features/toolbox/components/ToolboxV2.web.js +++ b/react/features/toolbox/components/ToolboxV2.web.js @@ -385,7 +385,9 @@ class ToolboxV2 extends Component { * @returns {void} */ _doOpenFeedback() { - this.props.dispatch(openFeedbackDialog()); + const { _conference } = this.props; + + this.props.dispatch(openFeedbackDialog(_conference)); } /**