浏览代码

feat(native-participants-pane) Updated comments

master
Calin Chitu 4 年前
父节点
当前提交
b332fb474b
共有 1 个文件被更改,包括 4 次插入1 次删除
  1. 4
    1
      react/features/conference/components/native/Conference.js

+ 4
- 1
react/features/conference/components/native/Conference.js 查看文件

@@ -72,6 +72,9 @@ type Props = AbstractProps & {
72 72
      */
73 73
     _fullscreenEnabled: boolean,
74 74
 
75
+    /**
76
+     * The indicator which determines if the participants pane is open.
77
+     */
75 78
     _isOpen: boolean,
76 79
 
77 80
     /**
@@ -391,7 +394,6 @@ class Conference extends AbstractConference<Props, *> {
391 394
  * @returns {Props}
392 395
  */
393 396
 function _mapStateToProps(state) {
394
-    const { isOpen } = state['features/participants-pane'];
395 397
     const { connecting, connection } = state['features/base/connection'];
396 398
     const {
397 399
         conference,
@@ -399,6 +401,7 @@ function _mapStateToProps(state) {
399 401
         membersOnly,
400 402
         leaving
401 403
     } = state['features/base/conference'];
404
+    const { isOpen } = state['features/participants-pane'];
402 405
     const { aspectRatio, reducedUI } = state['features/base/responsive-ui'];
403 406
 
404 407
     // XXX There is a window of time between the successful establishment of the

正在加载...
取消
保存