diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-11-18 16:04:44 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-11-18 16:04:44 +0000 |
commit | 40f5865c522408e607b454cdbe96e870e15dcc0a (patch) | |
tree | 95c46bd465a01c24a346ec7f6d61a52c8e9bd792 /app/views/activities | |
parent | cbe5e02203aa2f96824fb726a2c28506f65d4ced (diff) | |
download | redmine-40f5865c522408e607b454cdbe96e870e15dcc0a.tar.gz redmine-40f5865c522408e607b454cdbe96e870e15dcc0a.zip |
Use the regular "icon icon-*" on activity view (#24313).
Patch by Marius BALTEANU.
git-svn-id: http://svn.redmine.org/redmine/trunk@15975 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/activities')
-rw-r--r-- | app/views/activities/index.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/activities/index.html.erb b/app/views/activities/index.html.erb index 033ae3cb6..f86390ab3 100644 --- a/app/views/activities/index.html.erb +++ b/app/views/activities/index.html.erb @@ -6,7 +6,7 @@ <h3><%= format_activity_day(day) %></h3> <dl> <% sort_activity_events(@events_by_day[day]).each do |e, in_group| -%> - <dt class="<%= e.event_type %> <%= "grouped" if in_group %> <%= User.current.logged? && e.respond_to?(:event_author) && User.current == e.event_author ? 'me' : nil %>"> + <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 %>"> <%= avatar(e.event_author, :size => "24") 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 %> |