Unverified Commit d3de97b2 authored by Steffen van Bergerem's avatar Steffen van Bergerem Committed by Benjamin Neff
Browse files

Disable autocomplete for the conversation form recipient input

closes #7375
parent a639951b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -7,6 +7,7 @@

## Bug fixes
* 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
* Add links to liked and commented pages [#5502](https://github.com/diaspora/diaspora/pull/5502)
+6 −1
Original line number Diff line number Diff line
@@ -4,7 +4,12 @@
    .form-group
      %label#to-label{for: "contacts-search-input"}= t(".to")
      .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
        = text_field_tag "person_ids", nil, id: "contact-ids", type: "hidden",
                                            aria: {labelledby: "to-label"}