Fix for Burn Again button not becoming active

This commit is contained in:
Josh Stewart 2019-01-29 20:36:45 +11:00
parent 9c9d43e1a8
commit 85495d20dc
1 changed files with 2 additions and 2 deletions

View File

@ -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;
});