Commit 69e5a4bbeb3e77900c1635e7d69f6067fdc898c0
Exists in
master
and in
4 other branches
Merge pull request #3428 from colindean/bug/assigned-team-typo
fix typo: shure -> sure
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/views/team_members/_assigned_team.html.haml
1 | 1 | %li{id: dom_id(team), class: "user_team_row team_#{team.id}"} |
2 | 2 | .pull-right |
3 | 3 | - if can?(current_user, :admin_team_member, @project) |
4 | - = link_to resign_project_team_path(@project, team), method: :delete, confirm: "Are you shure?", class: "btn btn-remove btn-tiny" do | |
4 | + = link_to resign_project_team_path(@project, team), method: :delete, confirm: "Are you sure?", class: "btn btn-remove btn-tiny" do | |
5 | 5 | %i.icon-minus.icon-white |
6 | 6 | |
7 | 7 | %strong= link_to team.name, team_path(team), title: team.name, class: "dark" | ... | ... |