Skip to content

Commit c471bfd

Browse files
authored
Merge pull request #216 from cmu-delphi/development
Development
2 parents 6109eee + 338b2b1 commit c471bfd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/assets/js/indicatorHandler.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ class IndicatorHandler {
288288
numFlusurvIndicators: this.getFlusurvIndicators().length,
289289
formStartDate: document.getElementById("start_date").value,
290290
formEndDate: document.getElementById("end_date").value,
291-
apiKey: document.getElementById("apiKey").value ? document.getElementById("apiKey").value : "Not provided",
291+
apiKey: document.getElementById("apiKey").value ? document.getElementById("apiKey").value : "",
292292
clientId: clientId ? clientId : "Not available",
293293
};
294294
var covidcastGeoValues = $("#geographic_value").select2("data")
@@ -441,7 +441,7 @@ class IndicatorHandler {
441441
nidssFluLocations: nidssFluLocations,
442442
nidssDengueLocations: nidssDengueLocations,
443443
flusurvLocations: flusurvLocations,
444-
apiKey: document.getElementById("apiKey").value ? document.getElementById("apiKey").value : "Not provided",
444+
apiKey: document.getElementById("apiKey").value ? document.getElementById("apiKey").value : "",
445445
clientId: clientId ? clientId : "Not available",
446446
};
447447
const csrftoken = Cookies.get("csrftoken");
@@ -480,7 +480,7 @@ class IndicatorHandler {
480480
nidssFluLocations: nidssFluLocations,
481481
nidssDengueLocations: nidssDengueLocations,
482482
flusurvLocations: flusurvLocations,
483-
apiKey: document.getElementById("apiKey").value ? document.getElementById("apiKey").value : "Not provided",
483+
apiKey: document.getElementById("apiKey").value ? document.getElementById("apiKey").value : "",
484484
clientId: clientId ? clientId : "Not available",
485485
}
486486
const csrftoken = Cookies.get("csrftoken");
@@ -519,7 +519,7 @@ class IndicatorHandler {
519519
nidssFluLocations: nidssFluLocations,
520520
nidssDengueLocations: nidssDengueLocations,
521521
flusurvLocations: flusurvLocations,
522-
apiKey: document.getElementById("apiKey").value ? document.getElementById("apiKey").value : "Not provided",
522+
apiKey: document.getElementById("apiKey").value ? document.getElementById("apiKey").value : "",
523523
clientId: clientId ? clientId : "Not available",
524524
}
525525
const csrftoken = Cookies.get("csrftoken");
@@ -558,7 +558,7 @@ class IndicatorHandler {
558558
nidssFluLocations: nidssFluLocations,
559559
nidssDengueLocations: nidssDengueLocations,
560560
flusurvLocations: flusurvLocations,
561-
apiKey: document.getElementById("apiKey").value ? document.getElementById("apiKey").value : "Not provided",
561+
apiKey: document.getElementById("apiKey").value ? document.getElementById("apiKey").value : "",
562562
clientId: clientId ? clientId : "Not available",
563563
}
564564
const csrftoken = Cookies.get("csrftoken");

0 commit comments

Comments
 (0)