diff --git a/NEWS b/NEWS index f072155..66642a8 100644 --- a/NEWS +++ b/NEWS @@ -8,6 +8,8 @@ * Made the subscription pricing page a little less confusing by hiding some of the bigger plans by default. * Increased the limit on characters per note from 25,000 to 50,000. + * Fixed a visual conflict between your web browser's search field + autocomplete and Luminotes built-in suggest-as-you-type feature. * Fixed an occasional bug that caused unexpected logouts. The solution was to move the session information into the database where it could be properly locked. diff --git a/view/Search_form.py b/view/Search_form.py index dba1c8a..cf1bc3b 100644 --- a/view/Search_form.py +++ b/view/Search_form.py @@ -7,6 +7,10 @@ class Search_form( Form ): Form.__init__( self, - Input( type = u"text", name = u"search_text", id = u"search_text", maxlength = 512, value = "search" ), + Input( + type = u"text", name = u"search_text", id = u"search_text", + maxlength = 512, value = "search", + autocomplete = u"off", + ), id = u"search_form", )