[RN] Hide conference indicators on reduced UI

This commit is contained in:
Bettenbuk Zoltan 2018-06-08 13:48:28 +02:00 committed by Lyubo Marinov
parent 7c8fa57bba
commit 79b31543c5
1 changed files with 3 additions and 1 deletions

View File

@ -258,7 +258,9 @@ class Conference extends Component<Props> {
* A container that automatically renders indicators such
* as VideoQualityLabel or RecordingLabel if need be.
*/}
<ConferenceIndicators />
{
!this.props._reducedUI && <ConferenceIndicators />
}
</View>
<TestConnectionInfo />