Commit 0f546a46 by bergquist

fix(dashlink): improve variable naming

parent dd7e215e
......@@ -50,9 +50,9 @@ class DashListCtrl extends PanelCtrl {
limit: this.panel.limit
}).then(result => {
this.dashList = dashboardIds.map(e => {
return _.find(result, r => {
return r.id === e;
this.dashList = dashboardIds.map(orderId => {
return _.find(result, dashboard => {
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