Remove .html_safe from activity

Closes SCI-3257
This commit is contained in:
Jure Grabnar 2019-04-02 11:02:22 +02:00
parent 5443bfcbd1
commit 85bbdcf4b3

View file

@ -2,9 +2,9 @@
<div class="row">
<div class="col-xs-12">
<% if activity.old_activity? %>
<%= activity.message&.html_safe %>
<%= activity.message %>
<% else %>
<%= generate_activity_content(activity).html_safe %>
<%= generate_activity_content(activity) %>
<% end %>
</div>
</div>