From cc4053ebeae2fb004b6aa6139c668886d0dbc1e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5var=20Aamb=C3=B8=20Fosstveit?= Date: Mon, 23 Mar 2020 20:35:51 +0100 Subject: [PATCH] Syntax --- app/src/components/MeetingViews/Democratic.js | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/app/src/components/MeetingViews/Democratic.js b/app/src/components/MeetingViews/Democratic.js index 550dda0..e2a703e 100644 --- a/app/src/components/MeetingViews/Democratic.js +++ b/app/src/components/MeetingViews/Democratic.js @@ -143,7 +143,8 @@ class Democratic extends React.PureComponent
@@ -171,12 +172,12 @@ class Democratic extends React.PureComponent Democratic.propTypes = { - advancedMode : PropTypes.bool, - boxes : PropTypes.number, - spotlightsPeers : PropTypes.array.isRequired, - toolbarsVisible : PropTypes.bool.isRequired, - permanentTopBar : PropTypes.bool, - classes : PropTypes.object.isRequired + advancedMode : PropTypes.bool, + boxes : PropTypes.number, + spotlightsPeers : PropTypes.array.isRequired, + toolbarsVisible : PropTypes.bool.isRequired, + permanentTopBar : PropTypes.bool, + classes : PropTypes.object.isRequired }; const mapStateToProps = (state) => @@ -185,7 +186,7 @@ const mapStateToProps = (state) => boxes : videoBoxesSelector(state), spotlightsPeers : spotlightPeersSelector(state), toolbarsVisible : state.room.toolbarsVisible, - permanentTopBar : state.settings.permanentTopBar + permanentTopBar : state.settings.permanentTopBar }; };