diff options
author | Marius Balteanu <marius.balteanu@zitec.com> | 2021-11-08 20:14:49 +0000 |
---|---|---|
committer | Marius Balteanu <marius.balteanu@zitec.com> | 2021-11-08 20:14:49 +0000 |
commit | 1245708ba77b66ae4ab88434757ca4d9c965ae53 (patch) | |
tree | 69afc6fc339758698d8ebd462efb0673bcdacc9e /lib/redmine/helpers/gantt.rb | |
parent | c24b019c627ce159a258ac853c9f909627acbbd8 (diff) | |
download | redmine-1245708ba77b66ae4ab88434757ca4d9c965ae53.tar.gz redmine-1245708ba77b66ae4ab88434757ca4d9c965ae53.zip |
Fix typo in class 'icon-expended' (#36149).
Patch by Bernhard Rohloff.
git-svn-id: http://svn.redmine.org/redmine/trunk@21275 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine/helpers/gantt.rb')
-rw-r--r-- | lib/redmine/helpers/gantt.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/redmine/helpers/gantt.rb b/lib/redmine/helpers/gantt.rb index 6b40bc844..0d5803c3d 100644 --- a/lib/redmine/helpers/gantt.rb +++ b/lib/redmine/helpers/gantt.rb @@ -784,7 +784,7 @@ module Redmine } end if has_children - content = view.content_tag(:span, nil, :class => 'icon icon-expended expander') + content + content = view.content_tag(:span, nil, :class => 'icon icon-expanded expander') + content tag_options[:class] += ' open' else if params[:indent] |