Merge pull request #7308 from Azaret/fix_milestone_description_max_length

Fix milestones description's max length
This commit is contained in:
Dmitriy Zaporozhets 2014-08-13 16:43:04 +03:00
commit e24589a165
1 changed files with 1 additions and 1 deletions

View File

@ -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' }.