From fafffb519b5ea40c6e3a4870a5d78ab3536e70ba Mon Sep 17 00:00:00 2001 From: Leonard Kim Date: Mon, 9 Oct 2017 15:19:25 -0700 Subject: [PATCH] fix(filmstrip-only): prevent stats display --- .../base/popover/components/Popover.web.js | 14 ++++++++++---- .../components/ConnectionIndicator.js | 1 + 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/react/features/base/popover/components/Popover.web.js b/react/features/base/popover/components/Popover.web.js index d5253b2b1..7435c3162 100644 --- a/react/features/base/popover/components/Popover.web.js +++ b/react/features/base/popover/components/Popover.web.js @@ -66,6 +66,11 @@ class Popover extends Component { */ content: PropTypes.object, + /** + * Whether displaying of the popover should be prevented. + */ + disablePopover: PropTypes.bool, + /** * An id attribute to apply to the root of the {@code Popover} * component. @@ -148,12 +153,13 @@ class Popover extends Component { * @returns {void} */ _onShowDialog() { - this.setState({ showDialog: true }); + if (!this.props.disablePopover) { + this.setState({ showDialog: true }); - if (this.props.onPopoverOpen) { - this.props.onPopoverOpen(); + if (this.props.onPopoverOpen) { + this.props.onPopoverOpen(); + } } - } /** diff --git a/react/features/connection-indicator/components/ConnectionIndicator.js b/react/features/connection-indicator/components/ConnectionIndicator.js index 8ac2602ff..852f7101e 100644 --- a/react/features/connection-indicator/components/ConnectionIndicator.js +++ b/react/features/connection-indicator/components/ConnectionIndicator.js @@ -222,6 +222,7 @@ class ConnectionIndicator extends Component {