From 3da68c0a922db907aaff1cccbc367f175fb3a29b Mon Sep 17 00:00:00 2001 From: kikito Date: Sat, 12 Sep 2015 14:29:24 +0200 Subject: [PATCH] fixes typo which printed Debate#123213 when rendering the tags --- app/views/shared/_tags.html.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/shared/_tags.html.erb b/app/views/shared/_tags.html.erb index 9bb7537cf..6c6d87096 100644 --- a/app/views/shared/_tags.html.erb +++ b/app/views/shared/_tags.html.erb @@ -1,5 +1,5 @@ <%- limit ||= nil %> -<%= taggable = defined?(debate) ? debate : proposal %> +<%- taggable = defined?(debate) ? debate : proposal %> <% if taggable.tags.any? %> @@ -12,4 +12,4 @@ send("#{taggable.class.to_s.downcase}_path", taggable) %> <% end %> -<% end %> \ No newline at end of file +<% end %>