fix(filmstrip) Do not render filmstrip on prejoin/lobby

This commit is contained in:
Horatiu Muresan 2022-05-16 12:30:14 +03:00 committed by GitHub
parent c23d38807a
commit 420c7c87e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 2 deletions

View File

@ -236,8 +236,12 @@ class Conference extends AbstractConference<Props, *> {
id = 'videospace'
onTouchStart = { this._onVidespaceTouchStart }>
<LargeVideo />
<StageFilmstrip />
<MainFilmstrip />
{
_showPrejoin || _showLobby || (<>
<StageFilmstrip />
<MainFilmstrip />
</>)
}
</div>
{ _showPrejoin || _showLobby || <Toolbox /> }