summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorGregoire Daussin <gregoire.daussin@caudalie.com>2014-07-15 09:34:05 +0200
committerGregoire Daussin <gregoire.daussin@caudalie.com>2014-07-15 09:34:05 +0200
commitcc6edc416e48aae0244f9217086fcab184593b12 (patch)
tree2367d0272b76460ada45b99f56f9cfc8553b1e22 /app
parent275a5281d5f35bf2243a0b5814b8fb83f1561105 (diff)
downloadgitlab-ce-cc6edc416e48aae0244f9217086fcab184593b12.tar.gz
Fix milestones description's max length
Diffstat (limited to 'app')
-rw-r--r--app/views/projects/milestones/_form.html.haml2
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' }.