summaryrefslogtreecommitdiff
path: root/app/views/issues
diff options
context:
space:
mode:
authorfalk <havnelisten@gmail.com>2013-05-05 15:54:22 +0200
committerfalk <havnelisten@gmail.com>2013-05-05 15:54:22 +0200
commitba9baff8d94ab6b3dc69e347552df480170cfd20 (patch)
tree8a594da8150fda35b137b094237960b05173c29d /app/views/issues
parent493b5ff011d5788f669adabf978a40b49b8cf6a3 (diff)
downloadgitlab-ce-ba9baff8d94ab6b3dc69e347552df480170cfd20.tar.gz
Remove 2000 char limit on issue description textarea
Diffstat (limited to 'app/views/issues')
-rw-r--r--app/views/issues/_form.html.haml2
1 files changed, 1 insertions, 1 deletions
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'}.