Fixed code in issue details, changed form description to details.
This commit is contained in:
parent
2228f1b1ad
commit
66d64ad4f4
|
@ -945,6 +945,18 @@ p.time {
|
|||
.alert-message {
|
||||
width:34px;
|
||||
margin: 0 0 0 auto;
|
||||
|
||||
.error {
|
||||
width: 40px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pre {
|
||||
background: white !important;
|
||||
|
||||
code {
|
||||
background: none !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
.input= f.text_field :title, :maxlength => 255
|
||||
|
||||
.clearfix
|
||||
= f.label :description, "Issue Description"
|
||||
= f.label :description, "Issue Details"
|
||||
.input= f.text_area :description, :maxlength => 2000, :class => "xxlarge"
|
||||
%p.hint Markdown is enabled.
|
||||
|
||||
|
@ -31,7 +31,10 @@
|
|||
.input= f.check_box :closed
|
||||
|
||||
.actions
|
||||
- if @issue.new_record?
|
||||
= f.submit 'Submit new issue', :class => "primary btn"
|
||||
-else
|
||||
= f.submit 'Save changes', :class => "primary btn"
|
||||
|
||||
- if request.xhr?
|
||||
= link_to "Cancel", "#back", :onclick => "backToIssues();", :class => "btn"
|
||||
|
|
Loading…
Reference in a new issue