Skip to content

Commit

Permalink
Reporting: Dashboards don't need E for deferred render.
Browse files Browse the repository at this point in the history
  • Loading branch information
bensummers committed Jan 10, 2018
1 parent d1dbcb6 commit 9c97fbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion std_reporting/js/std_reporting_dashboards.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ P.REPORTING_API.dashboard = function(E, specification) {
dashboard.E = E;
dashboard.specification = specification;
// dashboard filters on specification.filter
dashboard.isExporting = (E.request.method === "POST");
dashboard.isExporting = E && (E.request.method === "POST");

// Collect extra columns and other configuration in a standardised way
var callServices = [
Expand Down

0 comments on commit 9c97fbf

Please sign in to comment.