From 42ecd6d2d180eaf7e6a192e36fc32e320060eabb Mon Sep 17 00:00:00 2001 From: Gnome Ann <> Date: Sun, 19 Sep 2021 11:59:31 -0400 Subject: [PATCH] Fix missing semicolon --- static/application.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/application.js b/static/application.js index a9a56480..98bb0f55 100644 --- a/static/application.js +++ b/static/application.js @@ -840,7 +840,7 @@ function submitEditedChunk(event) { } function downloadStory(format) { - var filename_without_extension = storyname !== null ? storyname : "untitled" + var filename_without_extension = storyname !== null ? storyname : "untitled"; var anchor = document.createElement('a');