Commit 0115d5a2ca55395ee9b6e7a855fb990eefaeb49d
Exists in
master
and in
4 other branches
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,7 +38,7 @@ | ||
| 38 | .clearfix | 38 | .clearfix |
| 39 | = f.label :description, "Details" | 39 | = f.label :description, "Details" |
| 40 | .input | 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 | %p.hint Issues are parsed with #{link_to "GitLab Flavored Markdown", help_markdown_path, target: '_blank'}. | 42 | %p.hint Issues are parsed with #{link_to "GitLab Flavored Markdown", help_markdown_path, target: '_blank'}. |
| 43 | 43 | ||
| 44 | 44 |