fix(filmstrip): hide screenshare indicator if not screen sharing

This commit is contained in:
Calin-Teodor
2023-03-28 11:27:16 +03:00
committed by Calinteodor
parent d68f1572a3
commit ba57b1afff

View File

@@ -221,7 +221,7 @@ class Thumbnail extends PureComponent<Props> {
style = { styles.thumbnailTopLeftIndicatorContainer }>
{ !_isVirtualScreenshare && <ConnectionIndicator participantId = { participantId } /> }
{ !_isVirtualScreenshare && <RaisedHandIndicator participantId = { participantId } /> }
{ tileView && !isScreenShare && (
{ tileView && (isScreenShare || _isVirtualScreenshare) && (
<View style = { styles.screenShareIndicatorContainer }>
<ScreenShareIndicator />
</View>