1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-19 15:01:14 +00:00

remove spaces inside {} of lib/redmine/helpers/gantt.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@20450 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2020-11-20 11:36:44 +00:00
parent 70137aeb75
commit d55971f613

View File

@ -30,8 +30,8 @@ module Redmine
# Relation types that are rendered # Relation types that are rendered
DRAW_TYPES = { DRAW_TYPES = {
IssueRelation::TYPE_BLOCKS => { :landscape_margin => 16, :color => '#F34F4F' }, IssueRelation::TYPE_BLOCKS => {:landscape_margin => 16, :color => '#F34F4F'},
IssueRelation::TYPE_PRECEDES => { :landscape_margin => 20, :color => '#628FEA' } IssueRelation::TYPE_PRECEDES => {:landscape_margin => 20, :color => '#628FEA'}
}.freeze }.freeze
UNAVAILABLE_COLUMNS = [:tracker, :id, :subject] UNAVAILABLE_COLUMNS = [:tracker, :id, :subject]
@ -92,7 +92,7 @@ module Redmine
end end
def common_params def common_params
{ :controller => 'gantts', :action => 'show', :project_id => @project } {:controller => 'gantts', :action => 'show', :project_id => @project}
end end
def params def params