Address validation feedback for backup workflow

This commit is contained in:
copilot-swe-agent[bot]
2026-07-17 16:58:34 +00:00
committed by GitHub
parent 9f3d3e7670
commit 992c806ed7
3 changed files with 5 additions and 4 deletions
@@ -584,7 +584,7 @@ async function pollBackupStatus() {
logDiv.scrollTop = logDiv.scrollHeight;
}
_backupLogOffset = data.offset;
var result = (data.result || "").toLowerCase();
const result = (data.result || "").toLowerCase();
if (result === "success" || result === "failed") {
stopBackupPoll();
renderBackupDone(result === "success");