diff options
author | Go MAEDA <maeda@farend.jp> | 2024-11-30 07:04:19 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2024-11-30 07:04:19 +0000 |
commit | 523289b9c4a48fea9e79bc0dca6d7580432cef78 (patch) | |
tree | 85926902e1ea45bc2bfb1168b0883fed9826d42b | |
parent | 18a09d63136553ad9c66852bb6df69b1e78db539 (diff) | |
download | redmine-523289b9c4a48fea9e79bc0dca6d7580432cef78.tar.gz redmine-523289b9c4a48fea9e79bc0dca6d7580432cef78.zip |
Merged r23323 from trunk to 6.0-stable (#41883).
git-svn-id: https://svn.redmine.org/redmine/branches/6.0-stable@23335 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/helpers/issues_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/issues_helper.rb b/app/helpers/issues_helper.rb index dc5b894e5..b4c87f758 100644 --- a/app/helpers/issues_helper.rb +++ b/app/helpers/issues_helper.rb @@ -618,7 +618,7 @@ module IssuesHelper value = link_to_attachment(atta, only_path: options[:only_path]) if options[:only_path] != false value += ' ' - value += link_to_attachment atta, class: 'icon-only icon-download', title: l(:button_download), download: true + value += link_to_attachment atta, class: 'icon-only icon-download', title: l(:button_download), download: true, icon: 'download' end else value = content_tag("i", h(value)) if value |