fix for frontend

This commit is contained in:
Harry Bomrah 2014-10-03 14:13:29 +08:00
parent 33c7931d27
commit ac5f30d51a
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ class PersonalLabsController < ApplicationController
"year" => lab.year,
"lab_title" => lab.lab_title,
"location" => lab.location,
"member" => lab.member_profile.name,
"member" => (lab.member_profile.name rescue ""),
"link_to_show" => OrbitHelper.url_to_show(lab.to_param)
}
end

View File

@ -32,7 +32,7 @@ class Lab
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