From 14f44a929bcc9384b0245488ea41131caffef432 Mon Sep 17 00:00:00 2001 From: Boof <97455552+hexahigh@users.noreply.github.com> Date: Fri, 12 May 2023 11:33:22 +0200 Subject: [PATCH] fix --- other/csv-merge/index.html | 2 +- other/csv-merge/index.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/other/csv-merge/index.html b/other/csv-merge/index.html index b5debd9..d1b46f9 100644 --- a/other/csv-merge/index.html +++ b/other/csv-merge/index.html @@ -5,7 +5,7 @@ Document - + diff --git a/other/csv-merge/index.js b/other/csv-merge/index.js index cc797e7..317276f 100644 --- a/other/csv-merge/index.js +++ b/other/csv-merge/index.js @@ -4,7 +4,7 @@ var array256 = "null" var array1 = "null" var output = "null" var linesDone = "1" -const outputArea = document.getElementById("outputArea").value +const outputArea = document.getElementById("outputArea") function loadFiles() { loadString() @@ -62,7 +62,7 @@ function mergeToCsv() { Astring = arrayString[linesDone]; A1 = array1[linesDone]; output = Astring + "," + Amd5 + "," + A1 + "," + A256 - outputArea = outputArea + "\n" + output + outputArea.value = outputArea.value + "\n" + output } linesDone + 1 }