fix: another fix for playlist view state, #9639

This commit is contained in:
Torkel Ödegaard 2017-10-24 10:58:14 +02:00
parent a8285d0eb4
commit 7861c27557

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);
});
}
};