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>2018-04-27 16:58:09 -0400
commitfd13efb7c2c381c1462b2586b19640c2ea8b4d8e (patch)
tree574da69d7a476ac184fb568398a6856695c2c610
parent2b022e942f22a48eac35068b30cc3f8be29d0f1d (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 f1f279170..5d0e5d5d7 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'