cleanup: rubocop: fix Layout/IndentFirstArrayElement in app/helpers/workflows_helper.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@19021 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA
2019-11-09 14:11:14 +00:00
parent bbef1d6c0f
commit 2f4b4d47dd
2 changed files with 4 additions and 3 deletions

View File

@@ -87,11 +87,13 @@ module WorkflowsHelper
else
select_tag(
tag_name,
options_for_select([
options_for_select(
[
[l(:general_text_Yes), "1"],
[l(:general_text_No), "0"],
[l(:label_no_change_option), "no_change"]
], "no_change")
],
"no_change")
)
end
end