浏览代码

dashfolders: fix for dashlist nav

Daniel Lee 8 年之前
父节点
当前提交
84b277d5c0
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      public/app/features/dashboard/dashboard_list_ctrl.ts

+ 1 - 1
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();
   }