Skip to content

Commit

Permalink
Merge remote-tracking branch 'michaelabon/stop-password-managers-addr…
Browse files Browse the repository at this point in the history
…ess-fields' into develop
  • Loading branch information
tyrasd committed Dec 18, 2024
2 parents 1a7cf41 + 6ffba9f commit 28183c7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ _Breaking developer changes, which may affect downstream projects or sites that

#### :sparkles: Usability & Accessibility
* Fix flickering when switching between background imagery layers, make switching backgrounds snappier
* Prevent password managers from autofilling tag fields ([#10508], thanks [@michaelabon])
#### :scissors: Operations
#### :camera: Street-Level
#### :white_check_mark: Validation
Expand All @@ -63,9 +64,11 @@ _Breaking developer changes, which may affect downstream projects or sites that
[#10488]: https://github.com/openstreetmap/iD/pull/10488
[#10489]: https://github.com/openstreetmap/iD/pull/10489
[#10495]: https://github.com/openstreetmap/iD/issues/10495
[#10508]: https://github.com/openstreetmap/iD/pull/10508
[#10594]: https://github.com/openstreetmap/iD/pull/10594
[@winstonsung]: https://github.com/winstonsung/
[@Nekzuris]: https://github.com/Nekzuris
[@michaelabon]: https://github.com/michaelabon


# 2.30.4
Expand Down
4 changes: 4 additions & 0 deletions modules/util/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -527,6 +527,10 @@ export function utilNoAuto(selection) {
.attr('autocomplete', 'new-password')
.attr('autocorrect', 'off')
.attr('autocapitalize', 'off')
.attr('data-1p-ignore', 'true') // 1Password
.attr('data-bwignore', 'true') // Bitwarden
.attr('data-form-type', 'other') // Dashlane
.attr('data-lpignore', 'true') // LastPass
.attr('spellcheck', isText ? 'true' : 'false');
}

Expand Down

0 comments on commit 28183c7

Please sign in to comment.