diff --git a/docs/SymptomsCausedByCOVIDLots/index.html b/docs/SymptomsCausedByCOVIDLots/index.html index f3a43943f43..9581990e593 100644 --- a/docs/SymptomsCausedByCOVIDLots/index.html +++ b/docs/SymptomsCausedByCOVIDLots/index.html @@ -1,40 +1,41 @@ + - - - - - -Safety Signal - - - - - - - - - - - - - --> + + + + + + + + + + + + + + + + + + + + -
-
- -
-
- - -
-
-
-
-

Safety Signal

- +
+
+
+
+
+

Worst Batches

+
+
+
+
+ + +
+ + + + + + + +
BatchProportional Reporting Ratio
+ +
+
+
+
+
+
+

Strongest Symptoms

+
+
+
+
+ + +
+ + + + + + + +
SymptomProportional Reporting Ratio > 1
+ +
+
+
+
+
+
+
+
+ + + -
- - - - - - - - - - - - - - + +
+ +
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/SymptomsCausedByCOVIDLots/js/PrrByKeyTableView.js b/docs/SymptomsCausedByCOVIDLots/js/PrrByKeyTableView.js index 9694a94125b..7dc9a3f8d74 100644 --- a/docs/SymptomsCausedByCOVIDLots/js/PrrByKeyTableView.js +++ b/docs/SymptomsCausedByCOVIDLots/js/PrrByKeyTableView.js @@ -17,11 +17,12 @@ class PrrByKeyTableView { displayPrrByKeyTable4Value(value) { UIUtils.disableButton(this.#downloadPrrByKeyTableButton); this.#prrByKeyProvider(value) - .then(prrByKey => { - this.#value = value; - this.#prrByKeyTable.display(prrByKey); - UIUtils.enableButton(this.#downloadPrrByKeyTableButton); - }); + .then( + prrByKey => { + this.#value = value; + this.#prrByKeyTable.display(prrByKey); + UIUtils.enableButton(this.#downloadPrrByKeyTableButton); + }); } #initializeButton(downloadPrrByKeyTableButton) { diff --git a/docs/SymptomsCausedByCOVIDLots/js/PrrByVaccineProvider.js b/docs/SymptomsCausedByCOVIDLots/js/PrrByVaccineProvider.js index 2bf949c38d2..afc4ea94ecb 100644 --- a/docs/SymptomsCausedByCOVIDLots/js/PrrByVaccineProvider.js +++ b/docs/SymptomsCausedByCOVIDLots/js/PrrByVaccineProvider.js @@ -1,10 +1,10 @@ class PrrByVaccineProvider { static getPrrByVaccine(symptom) { - return fetch(`../data/ProportionalReportingRatios/symptoms/${symptom}.json`).then(response => response.json()); + return fetch(`../data/SymptomsCausedByCOVIDLots/ProportionalReportingRatios/symptoms/${symptom}.json`).then(response => response.json()); } static getPrrBySymptom(vaccine) { - return fetch(`../data/ProportionalReportingRatios/vaccines/${vaccine}.json`).then(response => response.json()); + return fetch(`../data/SymptomsCausedByCOVIDLots/ProportionalReportingRatios/vaccines/${vaccine}.json`).then(response => response.json()); } } \ No newline at end of file diff --git a/docs/SymptomsCausedByCOVIDLots/js/PrrByVaccineTableView.js b/docs/SymptomsCausedByCOVIDLots/js/PrrByVaccineTableView.js index 8a9aff99560..6d390773cf5 100644 --- a/docs/SymptomsCausedByCOVIDLots/js/PrrByVaccineTableView.js +++ b/docs/SymptomsCausedByCOVIDLots/js/PrrByVaccineTableView.js @@ -17,7 +17,7 @@ class PrrByVaccineTableView { #createPrrByVaccineTable(tableElement) { return new PrrByKeyTable({ tableElement: tableElement, - keyColumnName: 'Vaccine', + keyColumnName: 'Batch', prrColumnName: 'Proportional Reporting Ratio', shallMarkRowIfPrrTooHigh: true });