summaryrefslogtreecommitdiffstats
path: root/app/helpers
diff options
context:
space:
mode:
authorMarius Balteanu <marius.balteanu@zitec.com>2024-08-31 07:24:16 +0000
committerMarius Balteanu <marius.balteanu@zitec.com>2024-08-31 07:24:16 +0000
commit768511f7cb5b78b267d69ae09e3329026d0f4f59 (patch)
tree05f9219563ed541767a6a79473c794d3bdaff14c /app/helpers
parentb2a9928c3aafac59d280336f3244b88732b59d2c (diff)
downloadredmine-768511f7cb5b78b267d69ae09e3329026d0f4f59.tar.gz
redmine-768511f7cb5b78b267d69ae09e3329026d0f4f59.zip
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
Diffstat (limited to 'app/helpers')
-rw-r--r--app/helpers/application_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb
index 94b9bc42b..5e873fe62 100644
--- a/app/helpers/application_helper.rb
+++ b/app/helpers/application_helper.rb
@@ -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