Merge pull request #4298 from lllusion3469/patch-5

fix leftover reference to Artist.notes
This commit is contained in:
evazion
2020-02-18 15:55:39 -06:00
committed by GitHub

View File

@@ -3,9 +3,9 @@
<div id="excerpt" style="display: none;">
<% if post_set.artist.present? %>
<% post_set.artist.tap do |artist| %>
<% unless artist.notes.blank? %>
<% unless artist.wiki_page.blank? %>
<div class="prose">
<%= format_text(artist.notes) %>
<%= format_text(artist.wiki_page.body) %>
</div>
<% end %>