From 84847fee8094c4a5382413ba806255aa157fd3bb Mon Sep 17 00:00:00 2001 From: Ross Date: Fri, 5 Aug 2022 11:09:44 +0100 Subject: [PATCH] . --- js/interact.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/interact.js b/js/interact.js index d05f1b6..d703504 100644 --- a/js/interact.js +++ b/js/interact.js @@ -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"; }