Update personal_journals_controller.rb

This commit is contained in:
chiu 2019-08-14 08:55:50 +08:00
parent 71ebbe36aa
commit 710a8dcbd7
1 changed files with 2 additions and 2 deletions

View File

@ -87,10 +87,10 @@ class PersonalJournalsController < ApplicationController
end
choice_value = fields_to_show
choice_value.unshift("paper_title")
choice_value=choice_value.map{|value| {"choice_value":value}}
choice_value=choice_value.map{|value| {"choice_value" => value}}
choice_default = OrbitHelper.params[:locale]!='en' ? "——選取分類——" : "——select class——"
choice_show.unshift(choice_default)
choice_show=choice_show.map{|value| {"choice_show":value}}
choice_show=choice_show.map{|value| {"choice_show" => value}}
choice=choice_value.zip(choice_show)
select_text = params[:locale]!='en' ? "搜尋類別:" : "search class:"
search_text = params[:locale]!='en' ? "關鍵字搜尋:" : "word to search:"