Commit 0115d5a2ca55395ee9b6e7a855fb990eefaeb49d

Authored by Dmitriy Zaporozhets
2 parents 493b5ff0 ba9baff8

Merge pull request #3841 from falk/master

Remove 2000 char limit on issue description
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  
... ...