diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-05-05 23:42:42 -0700 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-05-05 23:42:42 -0700 |
commit | 0115d5a2ca55395ee9b6e7a855fb990eefaeb49d (patch) | |
tree | 8a594da8150fda35b137b094237960b05173c29d | |
parent | 493b5ff011d5788f669adabf978a40b49b8cf6a3 (diff) | |
parent | ba9baff8d94ab6b3dc69e347552df480170cfd20 (diff) | |
download | gitlab-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.haml | 2 |
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'}. |