Skip to content

Commit cabefa4

Browse files
committed
fix(playlist): fix for timespan -> interval
1 parent 1ec97e5 commit cabefa4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

public/app/features/playlist/playlist_routes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function (angular) {
3333
.then(function(playlist) {
3434
return backendSrv.get('/api/playlists/' + playlistId + '/dashboards')
3535
.then(function(dashboards) {
36-
playlistSrv.start(dashboards, playlist.timespan);
36+
playlistSrv.start(dashboards, playlist.interval);
3737
});
3838
});
3939
}

0 commit comments

Comments
 (0)