1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-02-01 03:57:15 +00:00

Removes extra spaces in icon classes introduced by r22988 (#23980).

git-svn-id: https://svn.redmine.org/redmine/trunk@22993 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Marius Balteanu 2024-08-31 07:24:16 +00:00
parent b2a9928c3a
commit 768511f7cb

View File

@ -830,7 +830,7 @@ module ApplicationHelper
content = capture(&)
if content.present?
trigger =
content_tag('span', icon_with_label('3-bullets', l(:button_actions)), :class => 'icon-only icon-actions ',
content_tag('span', icon_with_label('3-bullets', l(:button_actions)), :class => 'icon-only icon-actions',
:title => l(:button_actions))
trigger = content_tag('span', trigger, :class => 'drdn-trigger')
content = content_tag('div', content, :class => 'drdn-items')
@ -1904,7 +1904,7 @@ module ApplicationHelper
def copy_object_url_link(url)
link_to_function(
icon_with_label('copy-link', l(:button_copy_link)), 'copyTextToClipboard(this);',
class: 'icon icon-copy-link ',
class: 'icon icon-copy-link',
data: {'clipboard-text' => url}
)
end