This commit is contained in:
Ross
2022-08-05 11:09:44 +01:00
parent 7c6287cbe0
commit 84847fee80
+1 -1
View File
@@ -144,7 +144,7 @@ function submissionError(data, answer_json, exam_details) {
let file = new Blob([answer_json], {type: "application/json"})
let link = document.getElementById("saved-failed-answers");
let link = document.getElementById("save-failed-answers");
link.href = URL.createObjectURL(file);
link.download = "answers.json";
}