diff --git a/react/features/film-strip/components/FilmStrip.js b/react/features/film-strip/components/FilmStrip.js
index 972b7cbfe..052c39279 100644
--- a/react/features/film-strip/components/FilmStrip.js
+++ b/react/features/film-strip/components/FilmStrip.js
@@ -19,7 +19,13 @@ class FilmStrip extends Component {
* @static
*/
static propTypes = {
- participants: React.PropTypes.array,
+ /**
+ * The participants in the conference.
+ *
+ * @private
+ * @type {Participant[]}
+ */
+ _participants: React.PropTypes.array,
visible: React.PropTypes.bool.isRequired
}
@@ -43,7 +49,7 @@ class FilmStrip extends Component {
showsHorizontalScrollIndicator = { false }
showsVerticalScrollIndicator = { false }>
{
- this._sort(this.props.participants)
+ this._sort(this.props._participants)
.map(p =>
+
);
}
@@ -202,8 +202,8 @@ export class AbstractWelcomePage extends Component {
*
* @param {Object} state - Redux state.
* @returns {{
- * localVideoTrack: (Track|undefined),
- * room: string
+ * _localVideoTrack: (Track|undefined),
+ * _room: string
* }}
*/
export function mapStateToProps(state) {
@@ -211,7 +211,7 @@ export function mapStateToProps(state) {
const tracks = state['features/base/tracks'];
return {
- localVideoTrack: getLocalVideoTrack(tracks),
- room: conference.room
+ _localVideoTrack: getLocalVideoTrack(tracks),
+ _room: conference.room
};
}