diff options
author | Jacob Schatz <jschatz1@gmail.com> | 2017-10-19 22:39:01 -0400 |
---|---|---|
committer | Jacob Schatz <jschatz1@gmail.com> | 2017-10-19 22:39:01 -0400 |
commit | 4adab046ea011f2fc01d312fdc28ab1b8fce7321 (patch) | |
tree | 61621aed96b45fa6c9aa2b6ffe54dbd16972ccd4 | |
parent | 0d0fcc059fd71ff5d1e1e8eaa4288bef42f58479 (diff) | |
download | gitlab-ce-4adab046ea011f2fc01d312fdc28ab1b8fce7321.tar.gz |
Edit deploy key
-rw-r--r-- | app/views/admin/deploy_keys/edit.html.haml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/admin/deploy_keys/edit.html.haml b/app/views/admin/deploy_keys/edit.html.haml index 3a59282e578..1eb152341cf 100644 --- a/app/views/admin/deploy_keys/edit.html.haml +++ b/app/views/admin/deploy_keys/edit.html.haml @@ -6,5 +6,5 @@ = form_for [:admin, @deploy_key], html: { class: 'deploy-key-form form-horizontal' } do |f| = render partial: 'shared/deploy_keys/form', locals: { form: f, deploy_key: @deploy_key } .form-actions - = f.submit 'Save changes', class: 'btn-save btn' - = link_to 'Cancel', admin_deploy_keys_path, class: 'btn btn-cancel' + = f.submit 'Save changes', class: 'btn btn-success' + = link_to 'Cancel', admin_deploy_keys_path, class: 'btn btn-default pull-right' |