From a992494eb3c94fb31f2ae85f36a6f4cd4bfd260f Mon Sep 17 00:00:00 2001 From: chiu Date: Wed, 29 Jul 2020 19:25:25 +0800 Subject: [PATCH] fix error --- app/controllers/asks_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/asks_controller.rb b/app/controllers/asks_controller.rb index 5e9b07b..b78afef 100644 --- a/app/controllers/asks_controller.rb +++ b/app/controllers/asks_controller.rb @@ -266,7 +266,7 @@ class AsksController < ActionController::Base when 'phone' f1['content'] = text_field_tag(field_name,nil,placeholder:t("#{tmp}.#{field}")) when 'appointment' - f1['content'] = "
#{text_field_tag(field_name,placeholder:t("#{tmp}.#{field}"))}
" + f1['content'] = "
#{text_field_tag(field_name,nil,placeholder:t("#{tmp}.#{field}"))}
" end f1 end