Compare commits

...

1 Commits

Author SHA1 Message Date
Horatiu Muresan 76899f8927 fix(filmstrip) DO not render filmstrip on prejoin/lobby 2022-05-16 12:24:45 +03:00
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 /> }