Merge pull request #3219 from bobrippling/fix/rep-interface

rep: fix interface.html
pull/3225/head
Rob Pilling 2024-03-01 08:59:13 +00:00 committed by GitHub
commit 5750aeb252
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -101,7 +101,8 @@ function getData() {
uploadBtn.disabled = true;
Util.showModal("Loading...");
Util.readStorageJSON(repJson, reps => {
Util.readStorageJSON(repJson, reps_ => {
reps = reps_;
Util.hideModal();
for(const rep of reps){
renderRep(rep);