From e77216f18e3e85e86fdffeafbe5784940ad04067 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Tue, 9 Nov 2021 10:11:21 +0100 Subject: [PATCH] chore(lint) tame the linter --- .../components/web/ConnectionIndicator.js | 42 +++++++++---------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/react/features/connection-indicator/components/web/ConnectionIndicator.js b/react/features/connection-indicator/components/web/ConnectionIndicator.js index a79262d36..7a2756b40 100644 --- a/react/features/connection-indicator/components/web/ConnectionIndicator.js +++ b/react/features/connection-indicator/components/web/ConnectionIndicator.js @@ -313,41 +313,41 @@ class ConnectionIndicator extends AbstractConnectionIndicator { ]; } - _onShowPopover: () => void; + _onShowPopover: () => void; - /** + /** * Shows popover. * * @private * @returns {void} */ - _onShowPopover() { - this.setState({ popoverVisible: true }); - } + _onShowPopover() { + this.setState({ popoverVisible: true }); + } - /** + /** * Creates a ReactElement for displaying the indicator (GSM bar). * * @returns {ReactElement} */ - _renderIndicator() { - const colorClass = this._getConnectionColorClass(); - const indicatorContainerClassNames + _renderIndicator() { + const colorClass = this._getConnectionColorClass(); + const indicatorContainerClassNames = `connection-indicator indicator ${colorClass}`; - return ( -
-
-
- { this._renderIcon() } -
-
-
- ); - } + return ( +
+
+
+ { this._renderIcon() } +
+
+
+ ); + } } /**