summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-05-05 23:42:42 -0700
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-05-05 23:42:42 -0700
commit0115d5a2ca55395ee9b6e7a855fb990eefaeb49d (patch)
tree8a594da8150fda35b137b094237960b05173c29d
parent493b5ff011d5788f669adabf978a40b49b8cf6a3 (diff)
parentba9baff8d94ab6b3dc69e347552df480170cfd20 (diff)
downloadgitlab-ce-0115d5a2ca55395ee9b6e7a855fb990eefaeb49d.tar.gz
Merge pull request #3841 from falk/master
Remove 2000 char limit on issue description
-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'}.