Commit 168afa024ee8c2023f229de2bab89fc26a168fa1
Exists in
spb-stable
and in
3 other branches
Merge branch 'bugfix/153/500_when_create_issue' into 'master'
Fix 500 Error When Creating Issue For Project With No Commits This merge request fixes issue #153, where trying to create an issue for a project with no commits results in a 500 error. This was done by updating the form to check that the repository wasn't empty before trying to load the contribution guide.
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/views/projects/issues/_form.html.haml
1 | 1 | %div.issue-form-holder |
2 | 2 | %h3.page-title= @issue.new_record? ? "New Issue" : "Edit Issue ##{@issue.iid}" |
3 | 3 | %hr |
4 | - - if @repository.contribution_guide && !@issue.persisted? | |
4 | + - if !@repository.empty? && @repository.contribution_guide && !@issue.persisted? | |
5 | 5 | - contribution_guide_url = project_blob_path(@project, tree_join(@repository.root_ref, @repository.contribution_guide.name)) |
6 | 6 | .alert.alert-info.col-sm-10.col-sm-offset-2 |
7 | 7 | ="Please review the <strong>#{link_to "guidelines for contribution", contribution_guide_url}</strong> to this repository.".html_safe | ... | ... |