fix(playlist): fix for timespan -> interval

This commit is contained in:
bergquist 2016-01-12 14:38:14 +01:00
parent 1ec97e5199
commit cabefa4fff

View File

@ -33,7 +33,7 @@ function (angular) {
.then(function(playlist) { .then(function(playlist) {
return backendSrv.get('/api/playlists/' + playlistId + '/dashboards') return backendSrv.get('/api/playlists/' + playlistId + '/dashboards')
.then(function(dashboards) { .then(function(dashboards) {
playlistSrv.start(dashboards, playlist.timespan); playlistSrv.start(dashboards, playlist.interval);
}); });
}); });
} }