Merge branch 'master' into 'master'

add link to authors( >= 1 ) for show, before only add link when authors > 1

add link to authors( >= 1 ) for show, before only add link when authors > 1

See merge request !7
This commit is contained in:
EricTYL 2019-12-31 18:36:40 +08:00
commit c8cbc034dd
1 changed files with 2 additions and 2 deletions

View File

@ -199,7 +199,7 @@ class WritingConference
when "url"
value = self.url.to_s.blank? ? "" : "<a href='#{self.url}'>#{self.url}</a>"
when "authors"
value = get_authors_show(self)
value = get_member_show(self) rescue ""
else
value = self.send(field) rescue ""
end
@ -223,4 +223,4 @@ class WritingConference
end
end
end
end