From 768511f7cb5b78b267d69ae09e3329026d0f4f59 Mon Sep 17 00:00:00 2001 From: Marius Balteanu Date: Sat, 31 Aug 2024 07:24:16 +0000 Subject: [PATCH] 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 --- app/helpers/application_helper.rb | 4 ++-- 1 file 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