Update lab.rb Add title

This commit is contained in:
wmcheng 2018-12-04 22:45:02 +08:00
parent f3354ec72a
commit adb2310745
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ class Lab
pd_data = []
fields_to_show.collect do |t|
if t == "lab_title"
pd_data << { "data_title" => "<a href='#{OrbitHelper.url_to_plugin_show(p.to_param,'personal_lab')}' target='_blank'>#{p.send(t)}" }
pd_data << { "data_title" => "<a href='#{OrbitHelper.url_to_plugin_show(p.to_param,'personal_lab')}' title='#{p.send(t)}' target='_blank'>#{p.send(t)}" }
else
pd_data << { "data_title" => p.send(t) }
end