diff --git a/public/app/plugins/panel/dashlist/module.ts b/public/app/plugins/panel/dashlist/module.ts index 75007410269..0ad573d6330 100644 --- a/public/app/plugins/panel/dashlist/module.ts +++ b/public/app/plugins/panel/dashlist/module.ts @@ -32,7 +32,7 @@ class DashListCtrl extends PanelCtrl { initEditMode() { super.initEditMode(); - this.modes = ['starred', 'search', 'last viewed']; + this.modes = ['starred', 'search', 'recently viewed']; this.icon = "fa fa-star"; this.addEditorTab('Options', () => { return {templateUrl: 'public/app/plugins/panel/dashlist/editor.html'}; @@ -42,7 +42,7 @@ class DashListCtrl extends PanelCtrl { refresh() { var params: any = {limit: this.panel.limit}; - if (this.panel.mode === 'last viewed') { + if (this.panel.mode === 'recently viewed') { var dashListNames = impressions.getDashboardOpened().filter((imp) => { return imp.orgId === config.bootData.user.orgId; diff --git a/public/dashboards/home.json b/public/dashboards/home.json index d54e276db5c..1d57a37edfe 100644 --- a/public/dashboards/home.json +++ b/public/dashboards/home.json @@ -47,11 +47,11 @@ { "id": 3, "limit": 10, - "mode": "last viewed", + "mode": "recently viewed", "query": "", "span": 6, "tags": [], - "title": "Last 10 viewed dashboards", + "title": "Recently viewed dashboards", "type": "dashlist" } ],