diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-08-13 16:43:04 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-08-13 16:43:04 +0300 |
commit | e24589a165d8ed23aa8164f488f2de9f1b358668 (patch) | |
tree | 6d34e941cd992b97da4971f5a68f4780422f41b3 /app | |
parent | 82c8c44cac6e3321298c5f595a0672311c395768 (diff) | |
parent | cc6edc416e48aae0244f9217086fcab184593b12 (diff) | |
download | gitlab-ce-e24589a165d8ed23aa8164f488f2de9f1b358668.tar.gz |
Merge pull request #7308 from Azaret/fix_milestone_description_max_length
Fix milestones description's max length
Diffstat (limited to 'app')
-rw-r--r-- | app/views/projects/milestones/_form.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/milestones/_form.html.haml b/app/views/projects/milestones/_form.html.haml index 979c27daa2b..df79125eae6 100644 --- a/app/views/projects/milestones/_form.html.haml +++ b/app/views/projects/milestones/_form.html.haml @@ -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' }. |