diff options
author | Jeroen Knoops <jeroen.knoops@gmail.com> | 2013-11-30 23:19:18 +0100 |
---|---|---|
committer | Jeroen Knoops <jeroen.knoops@gmail.com> | 2013-11-30 23:19:18 +0100 |
commit | 4c8901116f8db5a61bf4d552cbdced8947d467e2 (patch) | |
tree | 94fc4e2549f152e825fdb4f02de8d924f4d97124 | |
parent | fcda188a1c5d254c1b09ce4bf1f4a75dce90d98b (diff) | |
download | gitlab-ci-4c8901116f8db5a61bf4d552cbdced8947d467e2.tar.gz |
fix in view on naming setting
-rw-r--r-- | app/views/admin/projects/show.html.haml | 4 | ||||
-rw-r--r-- | app/views/projects/_form.html.haml | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/app/views/admin/projects/show.html.haml b/app/views/admin/projects/show.html.haml index 6fcae41..18aa21d 100644 --- a/app/views/admin/projects/show.html.haml +++ b/app/views/admin/projects/show.html.haml @@ -40,8 +40,8 @@ Send mail to commiter: %strong= @project.email_add_committer %p - Send only on broken builds: - %strong= @project.email_all_breaking_builds + Send on all broken builds: + %strong= @project.email_all_broken_builds .span6 %fieldset diff --git a/app/views/projects/_form.html.haml b/app/views/projects/_form.html.haml index ac070a5..ce65bc9 100644 --- a/app/views/projects/_form.html.haml +++ b/app/views/projects/_form.html.haml @@ -68,9 +68,9 @@ %span Add committer to recipients list %br .field - = f.label :email_all_breaking_builds do - = f.check_box :email_all_breaking_builds - %span Send notification on all breaking builds + = f.label :email_all_broken_builds do + = f.check_box :email_all_broken_builds + %span Send notification on all broken builds %br %fieldset |