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' id = 'videospace'
onTouchStart = { this._onVidespaceTouchStart }> onTouchStart = { this._onVidespaceTouchStart }>
<LargeVideo /> <LargeVideo />
{
_showPrejoin || _showLobby || (<>
<StageFilmstrip /> <StageFilmstrip />
<MainFilmstrip /> <MainFilmstrip />
</>)
}
</div> </div>
{ _showPrejoin || _showLobby || <Toolbox /> } { _showPrejoin || _showLobby || <Toolbox /> }