From 0bea67a2a865df45956cc44ca018c87806691471 Mon Sep 17 00:00:00 2001 From: Kenji Okimoto Date: Mon, 10 Sep 2018 17:18:59 +0900 Subject: [PATCH] Use parenthesis Signed-off-by: Kenji Okimoto --- app/views/fluentd/settings/source_and_output.html.haml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/fluentd/settings/source_and_output.html.haml b/app/views/fluentd/settings/source_and_output.html.haml index d086e5b..e070615 100644 --- a/app/views/fluentd/settings/source_and_output.html.haml +++ b/app/views/fluentd/settings/source_and_output.html.haml @@ -7,7 +7,7 @@ .card-header %h4= t('.in') .card-body - - %w|tail syslog monitor_agent http forward|.each do |type| + - %w(tail syslog monitor_agent http forward).each do |type| %p = link_to(send("daemon_setting_in_#{type}_path", @fluentd)) do = icon('fa-file-text-o fa-lg') @@ -23,7 +23,7 @@ .card-header %h4= t('.out') .card-body - - %w|stdout tdlog s3 mongo elasticsearch forward|.each do |type| + - %w(stdout tdlog s3 mongo elasticsearch forward).each do |type| %p = link_to(send("daemon_setting_out_#{type}_path", @fluentd)) do = icon('fa-file-text-o fa-lg')