Commit c43ac3c7212b3f64f8a23c0ec362d98a1f123679

Authored by Steven Verbeek
1 parent 66d64ad4

Small fix.

app/assets/stylesheets/common.scss
... ... @@ -951,7 +951,6 @@ p.time {
951 951 }
952 952 }
953 953 }
954   -
955 954 pre {
956 955 background: white !important;
957 956  
... ...
app/views/issues/_form.html.haml
... ... @@ -14,7 +14,8 @@
14 14  
15 15 .clearfix
16 16 = f.label :description, "Issue Details"
17   - .input= f.text_area :description, :maxlength => 2000, :class => "xxlarge"
  17 + .input
  18 + = f.text_area :description, :maxlength => 2000, :class => "xxlarge"
18 19 %p.hint Markdown is enabled.
19 20  
20 21 .clearfix
... ...