diff options
author | Marius Balteanu <marius.balteanu@zitec.com> | 2024-09-05 20:08:00 +0000 |
---|---|---|
committer | Marius Balteanu <marius.balteanu@zitec.com> | 2024-09-05 20:08:00 +0000 |
commit | 59323aecf29885a3a043d94d18106626dc6c216e (patch) | |
tree | fac1592b4fda70784d54cdca3b5dc839cd7cb934 /app/views | |
parent | 4bc9306d4b41554a667c75828dfa3088f8e3d414 (diff) | |
download | redmine-59323aecf29885a3a043d94d18106626dc6c216e.tar.gz redmine-59323aecf29885a3a043d94d18106626dc6c216e.zip |
Replaces activity events icons with SVG icons (#23980).
git-svn-id: https://svn.redmine.org/redmine/trunk@23020 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/activities/_activities.html.erb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/views/activities/_activities.html.erb b/app/views/activities/_activities.html.erb index aaeea76bc..5c19585d0 100644 --- a/app/views/activities/_activities.html.erb +++ b/app/views/activities/_activities.html.erb @@ -4,6 +4,7 @@ <dl> <% sort_activity_events(events_by_day[day]).each do |e, in_group| -%> <dt class="<%= e.event_type %> icon icon-<%= e.event_type %> <%= "grouped" if in_group %> <%= User.current.logged? && e.respond_to?(:event_author) && User.current == e.event_author ? 'me' : nil %>"> + <%= icon_for_event_type e.event_type %> <%= avatar(e.event_author) if e.respond_to?(:event_author) %> <span class="time"><%= format_time(e.event_datetime, false) %></span> <%= content_tag('span', e.project, :class => 'project') if @project.nil? || @project != e.project %> |