1
0

Fix "Write to Kobo" button
All checks were successful
Build and test project / build-and-test (push) Successful in 1m29s

This commit is contained in:
2026-03-19 22:44:35 +01:00
parent 7b2047563a
commit 45f3bbef74
2 changed files with 3 additions and 3 deletions

View File

@@ -799,7 +799,7 @@ import JSZip from 'jszip';
btnWrite.hidden = manualMode;
btnWrite.disabled = false;
btnWrite.className = 'primary';
btnWrite.textContent = TL.BUTTON.WRITE_TO_DEVICE;
btnWrite.textContent = TL.BUTTON.WRITE_TO_KOBO;
btnDownload.disabled = false;
writeInstructions.hidden = true;
downloadInstructions.hidden = true;
@@ -872,7 +872,7 @@ import JSZip from 'jszip';
writeInstructions.hidden = false;
} catch (err) {
btnWrite.disabled = false;
btnWrite.textContent = TL.BUTTON.WRITE_TO_DEVICE;
btnWrite.textContent = TL.BUTTON.WRITE_TO_KOBO;
showError(TL.STATUS.WRITE_FAILED + err.message);
}
});