Browse Source

provide the exact classname match the tests are looking for

j8
Leonard Kim 7 years ago
parent
commit
3bb3b4500d
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      react/features/filmstrip/components/web/Filmstrip.js

+ 3
- 3
react/features/filmstrip/components/web/Filmstrip.js View File

@@ -305,9 +305,9 @@ function _mapStateToProps(state) {
305 305
     const remoteVideosVisible = shouldRemoteVideosBeVisible(state);
306 306
     const className = `${remoteVideosVisible ? '' : 'hide-videos'} ${
307 307
         reduceHeight ? 'reduce-height' : ''}`.trim();
308
-    const videosClassName = `filmstrip__videos ${
309
-        isFilmstripOnly ? 'filmstrip__videos-filmstripOnly' : ''} ${
310
-        visible ? '' : 'hidden'}`;
308
+    const videosClassName = `filmstrip__videos${
309
+        isFilmstripOnly ? ' filmstrip__videos-filmstripOnly' : ''}${
310
+        visible ? '' : ' hidden'}`;
311 311
 
312 312
     return {
313 313
         _className: className,

Loading…
Cancel
Save