removed blank columns

This commit is contained in:
Harry Bomrah 2016-01-12 20:33:24 +08:00
parent e2fa75f424
commit 11a77c634b
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ class Research
pd_title = []
fields_to_show.each do |t|
fields_to_remove << t if datas.where(t.to_sym.ne => nil).count == 0
fields_to_remove << t if (datas.where(t.to_sym.ne => nil, t.to_sym.ne => "").count == 0 rescue false)
pd_title << {
"plugin_data_title" => I18n.t("personal_research.#{t}")
} if !fields_to_remove.include?(t)