Commit 0f546a46 by bergquist

fix(dashlink): improve variable naming

parent dd7e215e
...@@ -50,9 +50,9 @@ class DashListCtrl extends PanelCtrl { ...@@ -50,9 +50,9 @@ class DashListCtrl extends PanelCtrl {
limit: this.panel.limit limit: this.panel.limit
}).then(result => { }).then(result => {
this.dashList = dashboardIds.map(e => { this.dashList = dashboardIds.map(orderId => {
return _.find(result, r => { return _.find(result, dashboard => {
return r.id === e; return dashboard.id === orderId;
}); });
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment