Skip to content

Commit

Permalink
Merge pull request #352 from EverythingMe/bug/dashboard_auto_refresh
Browse files Browse the repository at this point in the history
Fix: dashboard auto refresh stopped working
  • Loading branch information
arikfr committed Jan 19, 2015
2 parents 0d35ec7 + 6da890d commit 9a3b25e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rd_ui/app/scripts/controllers/dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
_.each(row, function(widget, i) {
var newWidget = newWidgets[widget.id];
if (newWidget && newWidget[0].visualization.query.latest_query_data_id != widget.visualization.query.latest_query_data_id) {
row[i] = newWidget[0];
row[i] = new Widget(newWidget[0]);
}
});
});
Expand Down

0 comments on commit 9a3b25e

Please sign in to comment.