diff options
author | Clement Ho <ClemMakesApps@gmail.com> | 2017-01-30 11:43:13 -0600 |
---|---|---|
committer | Clement Ho <ClemMakesApps@gmail.com> | 2017-01-30 12:15:16 -0600 |
commit | 38a97197b7c1baf96a9960e70c60f4b7431082f7 (patch) | |
tree | f9fb1a8afa3f23cc3907e10f4f98702d780ab05b /app | |
parent | 6aec85ac4403e2e687473a5d14a72d7d1aa6df4a (diff) | |
download | gitlab-ce-38a97197b7c1baf96a9960e70c60f4b7431082f7.tar.gz |
Fix disable storing of sensitive information when importing a new repo23767-disable-storing-of-sensitive-information
Diffstat (limited to 'app')
-rw-r--r-- | app/views/shared/_import_form.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/shared/_import_form.html.haml b/app/views/shared/_import_form.html.haml index 65a3a6bddab..300022d4ad6 100644 --- a/app/views/shared/_import_form.html.haml +++ b/app/views/shared/_import_form.html.haml @@ -2,7 +2,7 @@ = f.label :import_url, class: 'control-label' do %span Git repository URL .col-sm-10 - = f.text_field :import_url, class: 'form-control', placeholder: 'https://username:password@gitlab.company.com/group/project.git', disabled: true + = f.text_field :import_url, autocomplete: 'off', class: 'form-control', placeholder: 'https://username:password@gitlab.company.com/group/project.git', disabled: true .well.prepend-top-20 %ul |