/mod_actions: add missing .prose wrapper around dtext.

This commit is contained in:
evazion
2020-01-08 14:15:17 -06:00
parent e72c10bc23
commit ba2744ad42

View File

@@ -9,7 +9,9 @@
<%= link_to mod_action.category.humanize, mod_actions_path(search: { category: mod_action.category_id }) %>
<% end %>
<% t.column "Message", td: {class: "col-expand"} do |mod_action| %>
<%= format_text(mod_action.description) %>
<div class="prose">
<%= format_text(mod_action.description) %>
</div>
<% end %>
<% t.column "Created" do |mod_action| %>
<%= link_to_user mod_action.creator %>