From 3bb3b4500dd939a45f36eeaef7b1a8fff4c497c7 Mon Sep 17 00:00:00 2001 From: Leonard Kim Date: Tue, 11 Sep 2018 10:24:54 -0700 Subject: [PATCH] provide the exact classname match the tests are looking for --- react/features/filmstrip/components/web/Filmstrip.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/react/features/filmstrip/components/web/Filmstrip.js b/react/features/filmstrip/components/web/Filmstrip.js index 02fb12a21..798fcb8c6 100644 --- a/react/features/filmstrip/components/web/Filmstrip.js +++ b/react/features/filmstrip/components/web/Filmstrip.js @@ -305,9 +305,9 @@ function _mapStateToProps(state) { const remoteVideosVisible = shouldRemoteVideosBeVisible(state); const className = `${remoteVideosVisible ? '' : 'hide-videos'} ${ reduceHeight ? 'reduce-height' : ''}`.trim(); - const videosClassName = `filmstrip__videos ${ - isFilmstripOnly ? 'filmstrip__videos-filmstripOnly' : ''} ${ - visible ? '' : 'hidden'}`; + const videosClassName = `filmstrip__videos${ + isFilmstripOnly ? ' filmstrip__videos-filmstripOnly' : ''}${ + visible ? '' : ' hidden'}`; return { _className: className,