diff --git a/public/app/core/directives/dash_class.js b/public/app/core/directives/dash_class.js index 084c920b765..08f4d3c7326 100644 --- a/public/app/core/directives/dash_class.js +++ b/public/app/core/directives/dash_class.js @@ -32,7 +32,7 @@ function (_, $, coreModule) { }); $scope.$watch('playlistSrv.isPlaying', function(newValue) { - elem.toggleClass('playlist-active', newValue); + elem.toggleClass('playlist-active', newValue === true); }); } };