From eb200f95cc46b66cbe9009969a600807ac413f3c Mon Sep 17 00:00:00 2001 From: Anton Sarukhanov <code@ant.sr> Date: Wed, 11 Dec 2019 22:42:48 -0500 Subject: [PATCH] Hide autocomplete dropdown; gets in the way of UI. --- whatformat/templates/landing.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/whatformat/templates/landing.html b/whatformat/templates/landing.html index 0f8893c..5e8ff69 100644 --- a/whatformat/templates/landing.html +++ b/whatformat/templates/landing.html @@ -15,7 +15,7 @@ <p> Auto-detect the <a href="https://strftime.org/" target="_blank">Format String</a> of your date/time. </p> - <form id="detect-format"><input id="date" name="date" value="{{ date_string if date_string }}" placeholder="Enter a date and/or time here."/></form> + <form id="detect-format"><input id="date" name="date" value="{{ date_string if date_string }}" placeholder="Enter a date and/or time here." autocomplete="off" /></form> <section id="format"> </section> </main> -- GitLab