diff --git a/public/app/features/playlist/partials/playlist.html b/public/app/features/playlist/partials/playlist.html index 46598d18c7f..9d9bc0b2589 100644 --- a/public/app/features/playlist/partials/playlist.html +++ b/public/app/features/playlist/partials/playlist.html @@ -2,6 +2,7 @@
+

Creating new playlist



@@ -34,7 +35,7 @@
  • - Search + Search Search dashboards by their titles to add to the playlist
-
-
Playlist dashboards
-
-
- +
+
Search results
+
{{dashboard.title}} @@ -75,12 +74,13 @@
- Playlist empty + Search results empty
-
+
+
Playlist dashboards
diff --git a/public/app/features/playlist/playlistsCtrl.js b/public/app/features/playlist/playlistsCtrl.js index 57e11bffe21..d02757acf3e 100644 --- a/public/app/features/playlist/playlistsCtrl.js +++ b/public/app/features/playlist/playlistsCtrl.js @@ -13,6 +13,7 @@ function (angular, _) { $location, backendSrv ) { + $scope.playlists = playlists; $scope.playlistUrl = function(playlist) { @@ -40,10 +41,13 @@ function (angular, _) { src: './app/features/playlist/partials/playlist-remove.html', scope: modalScope }); + }; $scope.createPlaylist = function() { $location.path('/playlists/create'); }; + }); + });