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