From 7290d8530e7882359de916cdd990c96858dbc988 Mon Sep 17 00:00:00 2001 From: The Ghost of FOSS' Future <163201376+sneedgroup-holder@users.noreply.github.com> Date: Tue, 17 Sep 2024 18:45:02 -0500 Subject: [PATCH] Update index.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 9b071fe..e7c5015 100644 --- a/index.html +++ b/index.html @@ -331,7 +331,7 @@ }; function quickSaveFile(content) { - const fileName = prompt("File name to quick save as:"); + const fileName = prompt("File name to quick save as:", `${currentFile}`); const blob = new Blob([content], { type: "text/plain" }); const a = document.createElement("a"); a.href = URL.createObjectURL(blob);