summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2018-04-27 13:15:41 -0400
committerbill-auger <mr.j.spam.me@gmail.com>2019-02-27 10:16:50 -0500
commitaa10f1c4b2ce31a9391a882f913e8e070f4d0cdc (patch)
tree27d839951d549e9337e9c2121a6f1eaf36119849
parent6b0f750db914c67c33dbd05a603fef068ef742f8 (diff)
shift 'assigned_to' to right column in issue view
-rw-r--r--app/views/issues/show.html.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/issues/show.html.erb b/app/views/issues/show.html.erb
index 5a1cc8599..a534fc32b 100644
--- a/app/views/issues/show.html.erb
+++ b/app/views/issues/show.html.erb
@@ -46,7 +46,7 @@
rows.left l(:field_priority), @issue.priority.name, :class => 'priority'
unless @issue.disabled_core_fields.include?('assigned_to_id')
- rows.left l(:field_assigned_to), (@issue.assigned_to ? link_to_user(@issue.assigned_to) : "-"), :class => 'assigned-to'
+ rows.right l(:field_assigned_to), (@issue.assigned_to ? link_to_user(@issue.assigned_to) : "-"), :class => 'assigned-to'
end
unless @issue.disabled_core_fields.include?('category_id') || (@issue.category.nil? && @issue.project.issue_categories.none?)
rows.left l(:field_category), (@issue.category ? @issue.category.name : "-"), :class => 'category'