From 84b277d5c0c3c9d902f703efd2700158646ff3e4 Mon Sep 17 00:00:00 2001 From: Daniel Lee Date: Wed, 1 Nov 2017 20:12:32 +0100 Subject: [PATCH] dashfolders: fix for dashlist nav --- public/app/features/dashboard/dashboard_list_ctrl.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/features/dashboard/dashboard_list_ctrl.ts b/public/app/features/dashboard/dashboard_list_ctrl.ts index a8479de92e0..7ee7312fecc 100644 --- a/public/app/features/dashboard/dashboard_list_ctrl.ts +++ b/public/app/features/dashboard/dashboard_list_ctrl.ts @@ -10,7 +10,7 @@ export class DashboardListCtrl { /** @ngInject */ constructor(private backendSrv, navModelSrv, private $q) { - this.navModel = navModelSrv.getNav('cfg', 'dashboards'); + this.navModel = navModelSrv.getNav('dashboards', 'dashboards'); this.query = {query: '', mode: 'tree', tag: []}; this.getDashboards(); }