Fix for Burn Again button not becoming active
This commit is contained in:
parent
9c9d43e1a8
commit
85495d20dc
|
@ -231,7 +231,7 @@ function uploadFW()
|
|||
spinner.classList.add('fa-check');
|
||||
|
||||
//Re-enable the re-burn button
|
||||
reinstallButton.disabled = true;
|
||||
reinstallButton.disabled = false;
|
||||
});
|
||||
|
||||
ipcRenderer.on("upload percent", (event, percent) => {
|
||||
|
@ -247,7 +247,7 @@ function uploadFW()
|
|||
spinner.classList.remove('fa-spinner');
|
||||
spinner.classList.add('fa-times');
|
||||
|
||||
reinstallButton.disabled = true;
|
||||
reinstallButton.disabled = false;
|
||||
});
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue