From 18613d05c9018714d3d0c2c536cc26b164598e3e Mon Sep 17 00:00:00 2001 From: HeNine <> Date: Wed, 20 Oct 2021 16:04:31 +0200 Subject: [PATCH] Blank submission makes no change --- professor/script.js | 1 + 1 file changed, 1 insertion(+) diff --git a/professor/script.js b/professor/script.js index edb836e..256ade2 100644 --- a/professor/script.js +++ b/professor/script.js @@ -37,6 +37,7 @@ function fillLineInfo(line_json) { async function submit() { const new_transcription = document.getElementById("new_transcription").value; const new_speakers = await Promise.all(document.getElementById("speaker_input").value + .trim() .split(",") .filter(x => x !== "") .map(speaker_raw => speaker_raw.trim())