diff options
author | Go MAEDA <maeda@farend.jp> | 2024-08-12 08:45:54 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2024-08-12 08:45:54 +0000 |
commit | b3d1deeece819ee25de1b3168393845780d6c51e (patch) | |
tree | 327c50539ec5bc580821764c91cee8c550a6ed8b /app/helpers | |
parent | 6e21ae720909f9980e58c9411fb9ed8a81f06833 (diff) | |
download | redmine-b3d1deeece819ee25de1b3168393845780d6c51e.tar.gz redmine-b3d1deeece819ee25de1b3168393845780d6c51e.zip |
Fix RuboCop offense Layout/SpaceInsideParens, one of the offenses enabled in rubocop-rails-omakase (#39887).
git-svn-id: https://svn.redmine.org/redmine/trunk@22954 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/helpers')
-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 4784096ac..5661cf377 100644 --- a/app/helpers/issues_helper.rb +++ b/app/helpers/issues_helper.rb @@ -392,7 +392,7 @@ module IssuesHelper content = content_tag('hr') + - content_tag('p', content_tag('strong', custom_field_name_tag(value.custom_field) )) + + content_tag('p', content_tag('strong', custom_field_name_tag(value.custom_field))) + content_tag('div', attr_value_tag, class: 'value') s << content_tag('div', content, class: "#{value.custom_field.css_classes} attribute") end |