Update download filename in log page and handle form submission errors in login page

This commit is contained in:
Sean Morley
2024-04-15 00:13:02 +00:00
parent 1710c5b54d
commit 3892a3ea39
3 changed files with 38 additions and 9 deletions

View File

@@ -53,7 +53,7 @@
let url = URL.createObjectURL(blob);
let link = document.createElement("a");
link.download = "data.json";
link.download = "adventurelog-export.json";
link.href = url;
link.click();
URL.revokeObjectURL(url);