Commit 52ae054447980f2efb775e43adbe5ad4bcf575e6
1 parent
11b89eb3
Exists in
master
and in
4 other branches
prevent exception when trying to edit empty project
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
app/views/projects/_form.html.haml
... | ... | @@ -36,10 +36,10 @@ |
36 | 36 | .input |
37 | 37 | = f.text_area :description, placeholder: "awesome project", class: "span5", rows: 3, maxlength: 250 |
38 | 38 | |
39 | - - unless @repository.heads.empty? | |
39 | + - unless @project.empty_repo? | |
40 | 40 | .clearfix |
41 | 41 | = f.label :default_branch, "Default Branch" |
42 | - .input= f.select(:default_branch, @repository.heads.map(&:name), {}, style: "width:210px;") | |
42 | + .input= f.select(:default_branch, @repository.branch_names, {}) | |
43 | 43 | |
44 | 44 | |
45 | 45 | - if can?(current_user, :change_public_mode, @project) | ... | ... |