[RN] Hide conference indicators on reduced UI (coding style)

This commit is contained in:
Lyubo Marinov 2018-06-08 12:25:02 -05:00
parent 79b31543c5
commit 546651e51f
1 changed files with 4 additions and 5 deletions

View File

@ -255,11 +255,10 @@ class Conference extends Component<Props> {
<Filmstrip />
{/*
* A container that automatically renders indicators such
* as VideoQualityLabel or RecordingLabel if need be.
*/}
{
!this.props._reducedUI && <ConferenceIndicators />
* Examples of conference indicators are VideoQualityLabel
* and RecordingLabel.
*/
this.props._reducedUI || <ConferenceIndicators />
}
</View>
<TestConnectionInfo />