provide the exact classname match the tests are looking for

This commit is contained in:
Leonard Kim 2018-09-11 10:24:54 -07:00 committed by yanas
parent 0fca0f392d
commit 3bb3b4500d
1 changed files with 3 additions and 3 deletions

View File

@ -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,