Commit 69e5a4bbeb3e77900c1635e7d69f6067fdc898c0

Authored by Dmitriy Zaporozhets
2 parents 1c5a393c 9e24929f

Merge pull request #3428 from colindean/bug/assigned-team-typo

fix typo: shure -> sure
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"
... ...