rep: fix interface.html

pull/3219/head
Rob Pilling 2024-02-28 20:52:47 +00:00
parent 1f2179535a
commit 3a4504953b
1 changed files with 2 additions and 1 deletions

View File

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