-
Notifications
You must be signed in to change notification settings - Fork 532
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Autocomplete search field with emails #8236
Comments
@HassanHeydariNasab Thank you for the report, I tried reproducing the issue locally without success. could you please provide us with more details to help us debug this? |
@HassanHeydariNasab Thanks for the clarification, I did manage to reproduce it reliably on chromium. I specifically did the following:
|
After a bit of investigation, it appears that as long as the search input's Update: Even with a |
On chrome, clicking the "New email" button causes the search input to be autofilled with the user's email. This happens even with autocomplete set to "off", and with the button having a type of "button" Wrapping the search input in a form isolates it from unrelated buttons and fixes the issue. Close #8236
I will request features on forum or via support.
Bug in web app
Describe the bug
When the user clicks on the "New email" button, a dialog appears: "Enabling the search for your mailbox consumes memory on your device and might consume additional traffic."
To Reproduce
Steps to reproduce the behavior:
Expected behavior
It should not try to search in emails if the "New email" button is clicked.
Screenshots
Desktop (please complete the following information):
Additional context
It probably occurs because of
placeholder="Search emails"
in the search input and theNew email
button has a default value fortype
which issubmit
. Chrome assumes that it should auto complete with "emails". We should set theautocomplete
attribute to a proper value to not confuse the web browser.The text was updated successfully, but these errors were encountered: