fix leftover reference to Artist.notes

This commit is contained in:
lllusion3469
2020-02-18 21:42:52 +01:00
committed by GitHub
parent 187565125c
commit 090671cedf

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 %>