diff options
author | dosire <sytses@gmail.com> | 2014-01-15 16:16:07 +0100 |
---|---|---|
committer | dosire <sytses@gmail.com> | 2014-01-15 16:16:07 +0100 |
commit | 92c568226808cc48aa6396c17d5d15741bd3d123 (patch) | |
tree | b2e676fd8c8a7b105358355fbc39a1553d65836f /app/views/projects/branches/new.html.haml | |
parent | 55024ed13af87cea939c6250103c11f8a6e6fa10 (diff) | |
download | gitlab-ce-92c568226808cc48aa6396c17d5d15741bd3d123.tar.gz |
Replace hints with text that is obviously not valid.
Diffstat (limited to 'app/views/projects/branches/new.html.haml')
-rw-r--r-- | app/views/projects/branches/new.html.haml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/app/views/projects/branches/new.html.haml b/app/views/projects/branches/new.html.haml index d173065afd2..629f7cd5a40 100644 --- a/app/views/projects/branches/new.html.haml +++ b/app/views/projects/branches/new.html.haml @@ -5,12 +5,11 @@ .form-group = label_tag :branch_name, 'Name for new branch', class: 'control-label' .col-sm-10 - = text_field_tag :branch_name, nil, placeholder: 'feature/dashboard', required: true, tabindex: 1, class: 'form-control' + = text_field_tag :branch_name, nil, placeholder: 'branch name, tag or commit SHA', required: true, tabindex: 1, class: 'form-control' .form-group = label_tag :ref, 'Create from', class: 'control-label' .col-sm-10 - = text_field_tag :ref, nil, placeholder: 'master', required: true, tabindex: 2, class: 'form-control' - .light branch name or commit SHA + = text_field_tag :ref, nil, placeholder: 'branch name, tag or commit SHA', required: true, tabindex: 2, class: 'form-control' .form-actions = submit_tag 'Create branch', class: 'btn btn-create', tabindex: 3 = link_to 'Cancel', project_branches_path(@project), class: 'btn btn-cancel' |