summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-09-21 13:04:02 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-09-21 13:04:02 +0000
commitd02808aaf37901d19d195bab6350bf777a416947 (patch)
treed6b7e6f9a24aec00bc00cc925eece8fc02e900d7
parent73b37f6bfc0a5203a37250c3aa022791f850c04c (diff)
downloadredmine-d02808aaf37901d19d195bab6350bf777a416947.tar.gz
redmine-d02808aaf37901d19d195bab6350bf777a416947.zip
remove spaces inside {} of CustomFieldsHelper
git-svn-id: http://svn.redmine.org/redmine/trunk@20061 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--app/helpers/custom_fields_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/custom_fields_helper.rb b/app/helpers/custom_fields_helper.rb
index 6cf09c8ab..be908562b 100644
--- a/app/helpers/custom_fields_helper.rb
+++ b/app/helpers/custom_fields_helper.rb
@@ -43,7 +43,7 @@ module CustomFieldsHelper
]
def render_custom_fields_tabs(types)
- tabs = CUSTOM_FIELDS_TABS.select {|h| types.include?(h[:name]) }
+ tabs = CUSTOM_FIELDS_TABS.select {|h| types.include?(h[:name])}
render_tabs tabs
end