diff --git a/public/app/plugins/panel/dashlist/editor.html b/public/app/plugins/panel/dashlist/editor.html index d1f67916e40..a9265bf2a14 100644 --- a/public/app/plugins/panel/dashlist/editor.html +++ b/public/app/plugins/panel/dashlist/editor.html @@ -23,10 +23,11 @@
- + label-class="width-6" + initial-title="'All'" + enable-reset="true">
diff --git a/public/app/plugins/panel/dashlist/module.ts b/public/app/plugins/panel/dashlist/module.ts index dbcdb10d4ac..d9d0f7789ac 100644 --- a/public/app/plugins/panel/dashlist/module.ts +++ b/public/app/plugins/panel/dashlist/module.ts @@ -17,7 +17,7 @@ class DashListCtrl extends PanelCtrl { search: false, starred: true, headings: true, - folderId: 0, + folderId: null, }; /** @ngInject */ @@ -85,7 +85,8 @@ class DashListCtrl extends PanelCtrl { limit: this.panel.limit, query: this.panel.query, tag: this.panel.tags, - folderId: this.panel.folderId, + folderIds: this.panel.folderId, + type: 'dash-db', }; return this.backendSrv.search(params).then(result => {