From cc6edc416e48aae0244f9217086fcab184593b12 Mon Sep 17 00:00:00 2001 From: Gregoire Daussin Date: Tue, 15 Jul 2014 09:34:05 +0200 Subject: Fix milestones description's max length --- app/views/projects/milestones/_form.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app') 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' }. -- cgit v1.2.1