Eliminating unneeded blank space character from show_date_tag

The space character causes the 'Show in x period' background color to
run into the todo description.

Closes #1368
This commit is contained in:
tim madden 2012-11-30 16:08:25 -06:00
parent 93c6d33729
commit f7f8b79f5b

View file

@ -188,7 +188,7 @@ module TodosHelper
def show_date_tag(date, the_class, text)
content_tag(:a, :title => format_date(date)) do
content_tag(:span, :class => the_class) { text + " "}
content_tag(:span, :class => the_class) { text }
end
end