diff --git a/app/views/workflows/copy.rhtml b/app/views/workflows/copy.rhtml index 54a683f36..76b108021 100644 --- a/app/views/workflows/copy.rhtml +++ b/app/views/workflows/copy.rhtml @@ -6,34 +6,34 @@
<%= l(:label_copy_source) %>

- - <%= select_tag('source_tracker_id', - "" + - "" + - options_from_collection_for_select(@trackers, 'id', 'name', @source_tracker && @source_tracker.id)) %> + + <%= select_tag('source_tracker_id', + "" + + "" + + options_from_collection_for_select(@trackers, 'id', 'name', @source_tracker && @source_tracker.id)) %>

- - <%= select_tag('source_role_id', - "" + - "" + - options_from_collection_for_select(@roles, 'id', 'name', @source_role && @source_role.id)) %> + + <%= select_tag('source_role_id', + "" + + "" + + options_from_collection_for_select(@roles, 'id', 'name', @source_role && @source_role.id)) %>

<%= l(:label_copy_target) %>

- - <%= select_tag 'target_tracker_ids', - "" + - options_from_collection_for_select(@trackers, 'id', 'name', @target_trackers && @target_trackers.map(&:id)), :multiple => true %> + + <%= select_tag 'target_tracker_ids', + "" + + options_from_collection_for_select(@trackers, 'id', 'name', @target_trackers && @target_trackers.map(&:id)), :multiple => true %>

- - <%= select_tag 'target_role_ids', - "" + - options_from_collection_for_select(@roles, 'id', 'name', @target_roles && @target_roles.map(&:id)), :multiple => true %> + + <%= select_tag 'target_role_ids', + "" + + options_from_collection_for_select(@roles, 'id', 'name', @target_roles && @target_roles.map(&:id)), :multiple => true %>

<%= submit_tag l(:button_copy) %>