diff --git a/public/app/core/services/search_srv.ts b/public/app/core/services/search_srv.ts index 2151e2063a9..ae8c7d61cc7 100644 --- a/public/app/core/services/search_srv.ts +++ b/public/app/core/services/search_srv.ts @@ -74,7 +74,7 @@ export class SearchSrv { score: -2, expanded: this.starredIsOpen, toggle: this.toggleStarred.bind(this), - items: this.transformToViewModel(result), + items: result.map(this.transformToViewModel), }; } }); diff --git a/public/app/features/dashboard/partials/dashboardList.html b/public/app/features/dashboard/partials/dashboardList.html index c9822efe561..449544aedc4 100644 --- a/public/app/features/dashboard/partials/dashboardList.html +++ b/public/app/features/dashboard/partials/dashboardList.html @@ -4,13 +4,13 @@