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:
commit
51d111903f
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@
|
||||||
= f.select(:default_branch, @project.repository.branch_names, {}, {class: 'select2 select-wide'})
|
= f.select(:default_branch, @project.repository.branch_names, {}, {class: 'select2 select-wide'})
|
||||||
.form-group
|
.form-group
|
||||||
= f.label :tag_list, "Tags", class: 'label-light'
|
= 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.
|
%p.help-block Separate tags with commas.
|
||||||
%hr
|
%hr
|
||||||
%fieldset
|
%fieldset
|
||||||
|
|
Loading…
Reference in a new issue