From 05c8c3e0d8c9ce2ae8ad10a2cb192163a851ee15 Mon Sep 17 00:00:00 2001 From: Ross Date: Sat, 6 Nov 2021 16:01:50 +0000 Subject: [PATCH] . --- rapids/templates/rapids/rapid_form.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rapids/templates/rapids/rapid_form.html b/rapids/templates/rapids/rapid_form.html index a62177d0..5eeb070c 100755 --- a/rapids/templates/rapids/rapid_form.html +++ b/rapids/templates/rapids/rapid_form.html @@ -295,9 +295,9 @@ let distinct_set = new Set([...files_to_add].filter( x => !current_files.has(x))); - console.log("distinct set", distinct_set.length, + console.log("distinct set", distinct_set.size, items); - extendInputs(distinct_set.length); + extendInputs(distinct_set.size); distinct_set.forEach((file) => { addFile(file, false); });