From ba9baff8d94ab6b3dc69e347552df480170cfd20 Mon Sep 17 00:00:00 2001 From: falk Date: Sun, 5 May 2013 15:54:22 +0200 Subject: [PATCH] Remove 2000 char limit on issue description textarea --- app/views/issues/_form.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/issues/_form.html.haml b/app/views/issues/_form.html.haml index ae386961948..b32d9192afc 100644 --- a/app/views/issues/_form.html.haml +++ b/app/views/issues/_form.html.haml @@ -38,7 +38,7 @@ .clearfix = f.label :description, "Details" .input - = f.text_area :description, maxlength: 2000, class: "xxlarge js-gfm-input", rows: 14 + = f.text_area :description, class: "xxlarge js-gfm-input", rows: 14 %p.hint Issues are parsed with #{link_to "GitLab Flavored Markdown", help_markdown_path, target: '_blank'}.