Merge branch 'main' into restore-countries
This commit is contained in:
@@ -17,4 +17,19 @@ class GoogleAnalytics {
|
||||
'search_term': search_term
|
||||
});
|
||||
}
|
||||
|
||||
static countrySelected(country) {
|
||||
gtag(
|
||||
"event",
|
||||
"select_item",
|
||||
{
|
||||
item_list_id: "countrySelect",
|
||||
items:
|
||||
[
|
||||
{
|
||||
item_id: country,
|
||||
}
|
||||
]
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
@@ -117,6 +117,7 @@ class BatchCodeTableInitializer {
|
||||
this.#columnSearch.columnContentUpdated();
|
||||
this.#selectInput();
|
||||
});
|
||||
GoogleAnalytics.countrySelected(this.#getCountry());
|
||||
}
|
||||
|
||||
#_addEmptyControlColumn(json) {
|
||||
|
||||
@@ -26,7 +26,7 @@ def downloadVAERSFileAndUnzip(file, workingDirectory):
|
||||
dstDir = workingDirectory + '/VAERS/')
|
||||
|
||||
def downloadVAERSFile(file, downloadDir):
|
||||
driver = getWebDriver(downloadDir, isHeadless = False)
|
||||
driver = getWebDriver(downloadDir, isHeadless = True)
|
||||
downloadedFile = downloadFile(
|
||||
absoluteFile = downloadDir + "/" + file,
|
||||
driver = driver,
|
||||
|
||||
Reference in New Issue
Block a user