diff options
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/watchers/_new.html.erb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/views/watchers/_new.html.erb b/app/views/watchers/_new.html.erb index 9fdf79262..a303801ec 100644 --- a/app/views/watchers/_new.html.erb +++ b/app/views/watchers/_new.html.erb @@ -17,7 +17,11 @@ :project_id => @project) }')" %> <div id="users_for_watcher"> - <%= principals_check_box_tags 'watcher[user_ids][]', (watched ? watched.addable_watcher_users : User.active.all(:limit => 100)) %> + <%= principals_check_box_tags( + 'watcher[user_ids][]', + (watched ? + watched.addable_watcher_users : User.active.all(:limit => 100)) + ) %> </div> <p class="buttons"> |