fix for frontend
This commit is contained in:
parent
c64e8b63fd
commit
04e352e594
|
@ -3,7 +3,7 @@ class PersonalExperiencesController < ApplicationController
|
|||
experiences = Experience.where(:is_hidden=>false).order_by(:end_date=>'desc',:start_date=>'desc').page(OrbitHelper.params[:page_no]).per(OrbitHelper.page_data_count)
|
||||
experience_list = experiences.collect do |experience|
|
||||
{
|
||||
"member" => experience.member_profile.name,
|
||||
"member" => (experience.member_profile.name rescue ""),
|
||||
"duration" => experience.duration,
|
||||
"organizationt_title" => experience.organizationt_title,
|
||||
"department" => experience.department,
|
||||
|
|
|
@ -40,7 +40,7 @@ class Experience
|
|||
def get_plugin_data(fields_to_show)
|
||||
plugin_datas = []
|
||||
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?
|
||||
plugin_datas << plugin_data
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue