1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-31 11:37:14 +00:00

Fixes rubocop offenses (#23980).

git-svn-id: https://svn.redmine.org/redmine/trunk@23147 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Marius Balteanu 2024-10-19 10:51:53 +00:00
parent 42762a3f3c
commit daa18f5c38

View File

@ -20,7 +20,7 @@
module IconsHelper
DEFAULT_ICON_SIZE = "18"
DEFAULT_SPRITE = "icons"
def sprite_icon(icon_name, label = nil, icon_only: false, size: DEFAULT_ICON_SIZE, css_class: nil, sprite: DEFAULT_SPRITE, plugin: nil)
sprite = plugin ? "plugin_assets/#{plugin}/#{sprite}.svg" : "#{sprite}.svg"
@ -36,7 +36,6 @@ module IconsHelper
end
end
#
def file_icon(entry, name, size: DEFAULT_ICON_SIZE, css_class: nil)
if entry.is_dir?
sprite_icon("folder", name, size: size, css_class: css_class)
@ -52,15 +51,15 @@ module IconsHelper
def activity_event_type_icon(event_type, size: DEFAULT_ICON_SIZE, css_class: nil)
icon_name = case event_type
when 'reply'
'comments'
when 'time-entry'
'time'
when 'message'
'comment'
else
event_type
end
when 'reply'
'comments'
when 'time-entry'
'time'
when 'message'
'comment'
else
event_type
end
sprite_icon(icon_name, size: size, css_class: css_class)
end