From 67d6ca48c7be10e47ecdf60bbfead2547615e324 Mon Sep 17 00:00:00 2001 From: Lyubo Marinov Date: Fri, 9 Feb 2018 00:35:19 -0600 Subject: [PATCH] Don't close the Reactions dialog so we can click multiple times easily --- react/features/reactions/components/ReactionsDialog.web.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react/features/reactions/components/ReactionsDialog.web.js b/react/features/reactions/components/ReactionsDialog.web.js index 3396d7d96..c68720124 100644 --- a/react/features/reactions/components/ReactionsDialog.web.js +++ b/react/features/reactions/components/ReactionsDialog.web.js @@ -65,7 +65,7 @@ class ReactionsDialog extends Component { * @returns {void} */ _onClick(reaction) { - this.props.onClose(); + // this.props.onClose(); this.props._onSendReaction(reaction); }