Commit ba9baff8d94ab6b3dc69e347552df480170cfd20
1 parent
493b5ff0
Exists in
master
and in
4 other branches
Remove 2000 char limit on issue description textarea
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/views/issues/_form.html.haml
... | ... | @@ -38,7 +38,7 @@ |
38 | 38 | .clearfix |
39 | 39 | = f.label :description, "Details" |
40 | 40 | .input |
41 | - = f.text_area :description, maxlength: 2000, class: "xxlarge js-gfm-input", rows: 14 | |
41 | + = f.text_area :description, class: "xxlarge js-gfm-input", rows: 14 | |
42 | 42 | %p.hint Issues are parsed with #{link_to "GitLab Flavored Markdown", help_markdown_path, target: '_blank'}. |
43 | 43 | |
44 | 44 | ... | ... |