fix: another fix for playlist view state, #9639

(cherry picked from commit 7861c27557)
This commit is contained in:
Torkel Ödegaard
2017-10-24 10:59:23 +02:00
parent 83c5853900
commit ea78d13b54
+1 -1
View File
@@ -32,7 +32,7 @@ function (_, $, coreModule) {
});
$scope.$watch('playlistSrv.isPlaying', function(newValue) {
elem.toggleClass('playlist-active', newValue);
elem.toggleClass('playlist-active', newValue === true);
});
}
};