Commit 1752c6dc8b755bc2fbff2757e8549521b0823048
1 parent
e68955b4
Exists in
master
and in
4 other branches
Uncheck notify team checkbox by default
Showing
2 changed files
with
6 additions
and
3 deletions
Show diff stats
app/assets/stylesheets/sections/notes.scss
app/views/notes/_form.html.haml
... | ... | @@ -28,12 +28,12 @@ |
28 | 28 | |
29 | 29 | .note-form-option |
30 | 30 | = label_tag :notify do |
31 | - = check_box_tag :notify, 1, !@note.for_commit? | |
31 | + = check_box_tag :notify, 1, false | |
32 | 32 | %span.light Notify team via email |
33 | 33 | |
34 | 34 | .js-notify-commit-author |
35 | 35 | = label_tag :notify_author do |
36 | - = check_box_tag :notify_author, 1 , @note.for_commit? | |
36 | + = check_box_tag :notify_author, 1 , false | |
37 | 37 | %span.light Notify commit author |
38 | 38 | .note-form-option |
39 | 39 | %a.choose-btn.btn.btn-small.js-choose-note-attachment-button | ... | ... |