Skip to content

Commit d55971f

Browse files
committed
remove spaces inside {} of lib/redmine/helpers/gantt.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@20450 e93f8b46-1217-0410-a6f0-8f06a7374b81
1 parent 70137ae commit d55971f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/redmine/helpers/gantt.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ class MaxLinesLimitReached < StandardError
3030

3131
# Relation types that are rendered
3232
DRAW_TYPES = {
33-
IssueRelation::TYPE_BLOCKS => { :landscape_margin => 16, :color => '#F34F4F' },
34-
IssueRelation::TYPE_PRECEDES => { :landscape_margin => 20, :color => '#628FEA' }
33+
IssueRelation::TYPE_BLOCKS => {:landscape_margin => 16, :color => '#F34F4F'},
34+
IssueRelation::TYPE_PRECEDES => {:landscape_margin => 20, :color => '#628FEA'}
3535
}.freeze
3636

3737
UNAVAILABLE_COLUMNS = [:tracker, :id, :subject]
@@ -92,7 +92,7 @@ def initialize(options={})
9292
end
9393

9494
def common_params
95-
{ :controller => 'gantts', :action => 'show', :project_id => @project }
95+
{:controller => 'gantts', :action => 'show', :project_id => @project}
9696
end
9797

9898
def params

0 commit comments

Comments
 (0)