Disable autocomplete for the conversation form recipient input
closes #7375
This commit is contained in:
parent
a639951b20
commit
d3de97b244
2 changed files with 7 additions and 1 deletions
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
## Bug fixes
|
## Bug fixes
|
||||||
* Don't hide posts when blocking someone from the profile [#7379](https://github.com/diaspora/diaspora/pull/7379)
|
* Don't hide posts when blocking someone from the profile [#7379](https://github.com/diaspora/diaspora/pull/7379)
|
||||||
|
* Disable autocomplete for the conversation form recipient input [#7375](https://github.com/diaspora/diaspora/pull/7375)
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
* Add links to liked and commented pages [#5502](https://github.com/diaspora/diaspora/pull/5502)
|
* Add links to liked and commented pages [#5502](https://github.com/diaspora/diaspora/pull/5502)
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,12 @@
|
||||||
.form-group
|
.form-group
|
||||||
%label#to-label{for: "contacts-search-input"}= t(".to")
|
%label#to-label{for: "contacts-search-input"}= t(".to")
|
||||||
.recipients-tag-list.clearfix#recipients-tag-list
|
.recipients-tag-list.clearfix#recipients-tag-list
|
||||||
= text_field_tag "contact_autocomplete", nil, id: "contacts-search-input", class: "form-control"
|
= text_field_tag "contact_autocomplete",
|
||||||
|
nil,
|
||||||
|
id: "contacts-search-input",
|
||||||
|
class: "form-control",
|
||||||
|
autocomplete: "off"
|
||||||
|
|
||||||
- unless defined?(mobile) && mobile
|
- unless defined?(mobile) && mobile
|
||||||
= text_field_tag "person_ids", nil, id: "contact-ids", type: "hidden",
|
= text_field_tag "person_ids", nil, id: "contact-ids", type: "hidden",
|
||||||
aria: {labelledby: "to-label"}
|
aria: {labelledby: "to-label"}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue