mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-30 22:08:49 +01:00
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:
parent
93c6d33729
commit
f7f8b79f5b
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue