Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfalk <havnelisten@gmail.com>2013-05-05 17:54:22 +0400
committerfalk <havnelisten@gmail.com>2013-05-05 17:54:22 +0400
commitba9baff8d94ab6b3dc69e347552df480170cfd20 (patch)
tree8a594da8150fda35b137b094237960b05173c29d /app/views/issues
parent493b5ff011d5788f669adabf978a40b49b8cf6a3 (diff)
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'}.