Fix milestones description's max length
This commit is contained in:
parent
275a5281d5
commit
cc6edc416e
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@
|
|||
.form-group
|
||||
= f.label :description, "Description", class: "control-label"
|
||||
.col-sm-10
|
||||
= f.text_area :description, maxlength: 2000, class: "form-control markdown-area", rows: 10
|
||||
= f.text_area :description, maxlength: 65535, class: "form-control markdown-area", rows: 10
|
||||
.hint
|
||||
.pull-left Milestones are parsed with #{link_to "GitLab Flavored Markdown", help_page_path("markdown", "markdown"), target: '_blank'}.
|
||||
.pull-left Attach images (JPG, PNG, GIF) by dragging & dropping or #{link_to "selecting them", '#', class: 'markdown-selector' }.
|
||||
|
|
Loading…
Reference in a new issue