Commit df96c079ef3e358ea221ce4c43163d478b79a5e0
1 parent
0cde12d1
Exists in
master
and in
4 other branches
Remove ambiguous condition
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/views/projects/_clone_panel.html.haml
... | ... | @@ -31,7 +31,7 @@ |
31 | 31 | %li |
32 | 32 | = link_to new_project_snippet_path(@project), title: "New Snippet" do |
33 | 33 | Snippet |
34 | - - if @project.issues_enabled && can?(current_user, :admin_team_member, @project) | |
34 | + - if can?(current_user, :admin_team_member, @project) | |
35 | 35 | %li.divider |
36 | 36 | %li |
37 | 37 | = link_to new_project_team_member_path(@project), title: "New Team member" do | ... | ... |