updating wording of UI

This commit is contained in:
frankknoll
2023-11-07 17:57:29 +01:00
parent 2f05786be6
commit 77e37685c4
4 changed files with 13839 additions and 139 deletions

View File

@@ -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) {