diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-03-04 19:47:20 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-03-04 19:47:20 +0200 |
commit | c2082f4d780a44ca0b29c60939dd1ea919d706c1 (patch) | |
tree | a01de54d15f5a0cce0b27552542fd1c360e5e02c | |
parent | 152c6018b3ace729095e7b58f5be3963b81050fb (diff) | |
download | gitlab-ce-c2082f4d780a44ca0b29c60939dd1ea919d706c1.tar.gz |
Fix edit team page
-rw-r--r-- | app/views/teams/edit.html.haml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/views/teams/edit.html.haml b/app/views/teams/edit.html.haml index 5491993d5f4..95c91b5044d 100644 --- a/app/views/teams/edit.html.haml +++ b/app/views/teams/edit.html.haml @@ -15,7 +15,7 @@ .clearfix.team-description-holder = f.label :description, "Details" .input - = f.text_area :description, maxlength: 250, class: "xxlarge js-gfm-input", rows: 4 + = f.text_area :description, maxlength: 250, class: "xlarge js-gfm-input", rows: 4 .clearfix = f.label :path do @@ -25,7 +25,6 @@ .form-actions = f.submit 'Save team changes', class: "btn btn-primary" - = link_to 'Delete team', team_path(@team), method: :delete, confirm: "You are shure?", class: "btn btn-remove pull-right" .span5 .ui-box %h5.title Remove team |