diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-11-29 12:47:46 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-11-29 12:47:46 +0000 |
commit | 7aad12703cd03cb1c9ea10937d006aacdf8c6320 (patch) | |
tree | 858de6af362fa8c64ac55fc05b10e0c274fd9265 /app/helpers | |
parent | 03e086ac5d0f1178fedad26070e45834b4ef5de6 (diff) | |
download | redmine-7aad12703cd03cb1c9ea10937d006aacdf8c6320.tar.gz redmine-7aad12703cd03cb1c9ea10937d006aacdf8c6320.zip |
fix source indent of IssuesHelper
git-svn-id: http://svn.redmine.org/redmine/trunk@20510 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/issues_helper.rb | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/app/helpers/issues_helper.rb b/app/helpers/issues_helper.rb index b04ec5fb0..5a392350d 100644 --- a/app/helpers/issues_helper.rb +++ b/app/helpers/issues_helper.rb @@ -100,15 +100,17 @@ module IssuesHelper css << " idnt idnt-#{level}" if level > 0 buttons = if manage_relations - link_to(l(:label_delete_link_to_subtask), - issue_path( - {:id => child.id, :issue => {:parent_issue_id => ''}, - :back_url => issue_path(issue.id), :no_flash => '1'}), - :method => :put, - :data => {:confirm => l(:text_are_you_sure)}, - :title => l(:label_delete_link_to_subtask), - :class => 'icon-only icon-link-break' - ) + link_to( + l(:label_delete_link_to_subtask), + issue_path( + {:id => child.id, :issue => {:parent_issue_id => ''}, + :back_url => issue_path(issue.id), :no_flash => '1'} + ), + :method => :put, + :data => {:confirm => l(:text_are_you_sure)}, + :title => l(:label_delete_link_to_subtask), + :class => 'icon-only icon-link-break' + ) else "".html_safe end |