Merge branch 'fix-project-tag-order' into 'master'

Fix project tag order because we assume so in test

See merge request !10174
This commit is contained in:
Rémy Coutable 2017-03-23 10:48:14 +00:00
commit 51d111903f
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@
= f.select(:default_branch, @project.repository.branch_names, {}, {class: 'select2 select-wide'})
.form-group
= f.label :tag_list, "Tags", class: 'label-light'
= f.text_field :tag_list, value: @project.tag_list.to_s, maxlength: 2000, class: "form-control"
= f.text_field :tag_list, value: @project.tag_list.sort.join(', '), maxlength: 2000, class: "form-control"
%p.help-block Separate tags with commas.
%hr
%fieldset