We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5aa4c22 + 77b089f commit ef34250Copy full SHA for ef34250
js/formDataToJson.js
@@ -295,7 +295,7 @@ async function downloadFile(event) {
295
296
const codeJson = document.getElementById("json-result").value
297
const jsonObject = JSON.parse(codeJson);
298
- const jsonString = JSON.stringify(jsonObject, null, 2);
+ const jsonString = JSON.stringify(jsonObject, null, 2) + "\n";
299
const blob = new Blob([jsonString], { type: "application/json" });
300
301
// Create anchor element and create download link
0 commit comments