diff --git a/server/csp.py b/server/csp.py index adeff683..1f6d2f94 100644 --- a/server/csp.py +++ b/server/csp.py @@ -5,14 +5,11 @@ "'self'", "'strict-dynamic'", "cdn.httparchive.org", - "use.fontawesome.com", "*.googletagmanager.com", "cdn.speedcurve.com", "spdcrv.global.ssl.fastly.net", "lux.speedcurve.com", "'unsafe-inline'", - "reports-dev-2vzgiib6.uc.gateway.dev", - "prod-gw-2vzgiib6.ue.gateway.dev", ], "font-src": ["'self'"], "connect-src": [ @@ -21,13 +18,14 @@ "discuss.httparchive.org", "dev.to", "cdn.rawgit.com", + "export.highcharts.com", "www.webpagetest.org", "*.analytics.google.com", "*.google-analytics.com", "*.googletagmanager.com", "*.speedcurve.com", "reports-dev-2vzgiib6.uc.gateway.dev", - "prod-gw-2vzgiib6.ue.gateway.dev", + "reports-prod-2vzgiib6.uc.gateway.dev", ], "img-src": [ "'self'", diff --git a/src/js/techreport/utils/constants.js b/src/js/techreport/utils/constants.js index cca515eb..02d394ce 100644 --- a/src/js/techreport/utils/constants.js +++ b/src/js/techreport/utils/constants.js @@ -1,4 +1,4 @@ -const apiBase = 'https://reports-dev-2vzgiib6.uc.gateway.dev/v1'; +const apiBase = 'https://reports-prod-2vzgiib6.uc.gateway.dev/v1'; export const Constants = { apiBase, diff --git a/src/js/timeseries.js b/src/js/timeseries.js index adf3b8e2..17419143 100644 --- a/src/js/timeseries.js +++ b/src/js/timeseries.js @@ -427,7 +427,7 @@ function drawChart(options, series) { }] }); }; - chart.zooming.mousewheel.enabled = false; + chart.zooming.mouseWheel.enabled = false; window.charts = window.charts || {}; window.charts[options.metric] = chart; }