Tests are fixed now
This commit is contained in:
parent
0a94640e32
commit
e3d7ce2cc4
6 changed files with 19 additions and 23 deletions
|
@ -11,18 +11,18 @@
|
|||
.input
|
||||
= f.text_field :name, placeholder: "Example Project", class: "xxlarge"
|
||||
|
||||
%fieldset.adv_settings
|
||||
%legend Advanced settings:
|
||||
.clearfix
|
||||
= f.label :path do
|
||||
Path
|
||||
.input
|
||||
= text_field_tag :ppath, @project.path_to_repo, class: "xlarge", disabled: true
|
||||
- if project.repo_exists?
|
||||
%fieldset.adv_settings
|
||||
%legend Advanced settings:
|
||||
.clearfix
|
||||
= f.label :path do
|
||||
Path
|
||||
.input
|
||||
= text_field_tag :ppath, @project.repository.path_to_repo, class: "xlarge", disabled: true
|
||||
|
||||
- if project.repo_exists?
|
||||
.clearfix
|
||||
= f.label :default_branch, "Default Branch"
|
||||
.input= f.select(:default_branch, repository.heads.map(&:name), {}, style: "width:210px;")
|
||||
.input= f.select(:default_branch, @project.repository.heads.map(&:name), {}, style: "width:210px;")
|
||||
|
||||
%fieldset.adv_settings
|
||||
%legend Features:
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
= event.project_name
|
||||
|
||||
.event-body
|
||||
%span.hint
|
||||
|
||||
%i.icon-comment
|
||||
%span.event-note
|
||||
%i.icon-comment-alt
|
||||
= truncate event.target.note, length: 70
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue