diff --git a/app/models/honor.rb b/app/models/honor.rb index 6ba6517..e8d8312 100644 --- a/app/models/honor.rb +++ b/app/models/honor.rb @@ -52,7 +52,7 @@ class Honor pd_title = [] fields_to_show.each do |t| - if (self.fields[t].type == String || self.fields[t].type == Object rescue false) + if (self.fields[t].type.to_s == "String" || self.fields[t].type.to_s == "Object" rescue false) fields_to_remove << t if (datas.where(t.to_sym.ne => nil, t.to_sym.ne => "").count == 0 rescue false) else fields_to_remove << t if (datas.where(t.to_sym.ne => nil).count == 0 rescue false)