diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-11-20 11:36:44 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-11-20 11:36:44 +0000 |
commit | d55971f613e4617a6e90ac8e24e4d7729a9a66f2 (patch) | |
tree | c636ead4c3900e69183dfdd237808d9668f4770a /lib/redmine | |
parent | 70137aeb750011672fe30f13b6c7b49db8b466ed (diff) | |
download | redmine-d55971f613e4617a6e90ac8e24e4d7729a9a66f2.tar.gz redmine-d55971f613e4617a6e90ac8e24e4d7729a9a66f2.zip |
remove spaces inside {} of lib/redmine/helpers/gantt.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@20450 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine')
-rw-r--r-- | lib/redmine/helpers/gantt.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/redmine/helpers/gantt.rb b/lib/redmine/helpers/gantt.rb index 31956bfae..7cefff825 100644 --- a/lib/redmine/helpers/gantt.rb +++ b/lib/redmine/helpers/gantt.rb @@ -30,8 +30,8 @@ module Redmine # Relation types that are rendered DRAW_TYPES = { - IssueRelation::TYPE_BLOCKS => { :landscape_margin => 16, :color => '#F34F4F' }, - IssueRelation::TYPE_PRECEDES => { :landscape_margin => 20, :color => '#628FEA' } + IssueRelation::TYPE_BLOCKS => {:landscape_margin => 16, :color => '#F34F4F'}, + IssueRelation::TYPE_PRECEDES => {:landscape_margin => 20, :color => '#628FEA'} }.freeze UNAVAILABLE_COLUMNS = [:tracker, :id, :subject] @@ -92,7 +92,7 @@ module Redmine end def common_params - { :controller => 'gantts', :action => 'show', :project_id => @project } + {:controller => 'gantts', :action => 'show', :project_id => @project} end def params |