diff --git a/app/views/debates/_debate.html.erb b/app/views/debates/_debate.html.erb index 4253143a6..6cc218e7a 100644 --- a/app/views/debates/_debate.html.erb +++ b/app/views/debates/_debate.html.erb @@ -5,7 +5,7 @@
Por <%= debate.author.name %> el <%= l debate.created_at.to_date %>
-<%= sanitize(debate.description.html_safe) %>
+<%= debate.description %>
<%= render 'shared/tags', debate: debate %>
diff --git a/app/views/debates/show.html.erb b/app/views/debates/show.html.erb index c9ce7abf1..21f23cdb7 100644 --- a/app/views/debates/show.html.erb +++ b/app/views/debates/show.html.erb @@ -14,7 +14,7 @@ <%= @debate.author.name %> • <%= l @debate.created_at.to_date %> • <%= pluralize(@debate.comment_threads.count, t("debates.show.comment"), t("debates.show.comments")) %><%= render 'shared/tags', debate: @debate %>