From 52a2cc2384bc64568ff8442cf47337fd544475e6 Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Mon, 15 Apr 2024 11:31:41 +0200 Subject: [PATCH] Hide the data picker form, let first check how it behaves in prod using the URL parameter only. I believe this will not work in prod since the file are copied after the data.js is generated. --- screenshots/html/script.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/screenshots/html/script.js b/screenshots/html/script.js index 48ee6746e2..d6b7690532 100644 --- a/screenshots/html/script.js +++ b/screenshots/html/script.js @@ -149,6 +149,7 @@ function addForm() { }; label2.appendChild(input2); form.appendChild(label2); + /* // Add a date picker to input the minimum date of modification const label3 = document.createElement('label'); label3.textContent = 'If modified since:'; @@ -168,6 +169,7 @@ function addForm() { addTable(); }; form.appendChild(dateInput); + */ // Add a span with id result to display the number of lines const lines = document.createElement('span'); lines.id = 'lines';