fix(filmstrip): sort alphabetically.

This commit is contained in:
Hristo Terezov 2021-08-30 09:50:24 -05:00
parent aff976d53d
commit a2bac9c3ac
2 changed files with 5 additions and 5 deletions

View File

@ -341,8 +341,8 @@ function _mapStateToProps(state, ownProps) {
return {
_audioMuted: audioTrack?.muted ?? true,
_isScreenShare: isScreenShare,
_isFakeParticipant: participant?.isFakeParticipant,
_isScreenShare: isScreenShare,
_local: participant?.local,
_localVideoOwner: Boolean(ownerId === localParticipantId),
_participantInLargeVideo: participantInLargeVideo,

View File

@ -86,9 +86,9 @@ const EMPTY_ARRAY = [];
class TileView extends PureComponent<Props> {
/**
* The FlatList's viewabilityConfig.
* The styles for the content container of the FlatList.
*/
_viewabilityConfig: Object;
_contentContainerStyles: Object;
/**
* The styles for the FlatList.
@ -96,9 +96,9 @@ class TileView extends PureComponent<Props> {
_flatListStyles: Object;
/**
* The styles for the content container of the FlatList.
* The FlatList's viewabilityConfig.
*/
_contentContainerStyles: Object;
_viewabilityConfig: Object;
/**
* Creates new TileView component.