fix for frontend
This commit is contained in:
parent
d01a440669
commit
f8f3212b7a
|
@ -7,7 +7,7 @@ class PersonalPatentsController < ApplicationController
|
||||||
"patent_title" => patent.patent_title,
|
"patent_title" => patent.patent_title,
|
||||||
"patent_no" => patent.patent_no,
|
"patent_no" => patent.patent_no,
|
||||||
"patent_country" => patent.patent_country,
|
"patent_country" => patent.patent_country,
|
||||||
"authors" => patent.member_profile.name,
|
"authors" => (patent.member_profile.name rescue ""),
|
||||||
"link_to_show" => OrbitHelper.url_to_show(patent.to_param)
|
"link_to_show" => OrbitHelper.url_to_show(patent.to_param)
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
|
@ -32,7 +32,7 @@ class Patent
|
||||||
def get_plugin_data(fields_to_show)
|
def get_plugin_data(fields_to_show)
|
||||||
plugin_datas = []
|
plugin_datas = []
|
||||||
fields_to_show.each do |field|
|
fields_to_show.each do |field|
|
||||||
plugin_data = self.get_plugin_field_data(field)
|
plugin_data = self.get_plugin_field_data(field) rescue nil
|
||||||
next if plugin_data.blank? or plugin_data['value'].blank?
|
next if plugin_data.blank? or plugin_data['value'].blank?
|
||||||
plugin_datas << plugin_data
|
plugin_datas << plugin_data
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue