1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-02-01 03:57:15 +00:00

remove spaces inside {} of CustomFieldsHelper

git-svn-id: http://svn.redmine.org/redmine/trunk@20061 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2020-09-21 13:04:02 +00:00
parent 73b37f6bfc
commit d02808aaf3

View File

@ -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