-
Notifications
You must be signed in to change notification settings - Fork 429
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
Protect inputs from autofill #3969
Comments
The feature flag
|
5 tasks
5 tasks
Flagsmith feature linked:
Segment
|
The feature flag
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Some of Flagsmith UI's inputs, like server-side environment key search box, is getting aggressively autofilled by Chromium-based browsers:
In case with this search box, this makes the server-side key list empty which is quite an inconvenience.
We need to prevent autocomplete on all relevant input fields.
Apparently, Chromium does not support
autocomplete="off"
attribute properly, as seen here: https://issues.chromium.org/issues/40093420For my browser (Arc 124.0.6367.92) adding
autocomplete="one-time-code"
helped.The text was updated successfully, but these errors were encountered: