diff options
author | Go MAEDA <maeda@farend.jp> | 2021-07-20 21:39:17 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2021-07-20 21:39:17 +0000 |
commit | a6e09913b725b0b1276c2d2a564a7e3070c2c23b (patch) | |
tree | 03964e275df2aaeb94c9dc7ca657feeb90d5a3b5 /app/views | |
parent | 605dadd37465398e0317ca855741e6582cdd0170 (diff) | |
download | redmine-a6e09913b725b0b1276c2d2a564a7e3070c2c23b.tar.gz redmine-a6e09913b725b0b1276c2d2a564a7e3070c2c23b.zip |
Link from assignee to group page (#12795).
git-svn-id: http://svn.redmine.org/redmine/trunk@21075 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/issues/show.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/issues/show.html.erb b/app/views/issues/show.html.erb index 3a4e1b40f..6b84bdfb3 100644 --- a/app/views/issues/show.html.erb +++ b/app/views/issues/show.html.erb @@ -50,7 +50,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.left l(:field_assigned_to), (@issue.assigned_to ? link_to_principal(@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' |