Skip to content

Commit

Permalink
ENTESB-1024 Selecting "Dashboard" in hawtio gives error
Browse files Browse the repository at this point in the history
  • Loading branch information
gashcrumb committed Dec 12, 2013
1 parent 3e7e74e commit b1ae314
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -258,7 +258,7 @@ module Dashboard {

public getDashboard(id:string, fn) {
var dashboards = this.loadDashboards();
var dashboard = dashboards.find({id: id});
var dashboard = dashboards.find((dashboard) => { return dashboard.id === id });
fn(dashboard);
}

Expand Down

0 comments on commit b1ae314

Please sign in to comment.