changing some names from Vaccine to Drug

This commit is contained in:
Frank Knoll
2024-07-12 08:48:27 +02:00
parent 2cc3b29ed3
commit ca4d47bbac
5 changed files with 20 additions and 20 deletions

View File

@@ -10,14 +10,14 @@ class PrrByVaccineTableView {
PrrByVaccineProvider.getPrrByVaccine);
}
displayPrrByVaccineTable4Symptom(symptom) {
this.#delegate.displayPrrByKeyTable4Value(symptom);
displayPrrByVaccineTable4Symptom(id, text) {
this.#delegate.displayPrrByKeyTable4Value(id, text);
}
#createPrrByVaccineTable(tableElement) {
return new PrrByKeyTable({
tableElement: tableElement,
keyColumnName: 'Vaccine',
keyColumnName: 'Drug',
prrColumnName: 'Lower Confidence Limit of Proportional Reporting Ratio',
shallMarkRowIfPrrTooHigh: true
});