diff --git a/app/helpers/todos_helper.rb b/app/helpers/todos_helper.rb index 9542d3d7941c7387badf6c1054b6200c71276957..3d2e079c380e1d84e7f1254bfb7ab27e96ecb5fc 100644 --- a/app/helpers/todos_helper.rb +++ b/app/helpers/todos_helper.rb @@ -120,7 +120,8 @@ module TodosHelper is_due_today = todo.target.due_date.try(:today?) is_overdue = todo.target.try(:overdue?) - content_tag :span, class: [('text-warning' if is_due_today), ('text-danger' if is_overdue)] do + html = "· ".html_safe + html << content_tag(:span, class: [('text-warning' if is_due_today), ('text-danger' if is_overdue)]) do "Due #{is_due_today ? "today" : todo.target.due_date.to_s(:medium)}" end end diff --git a/app/views/dashboard/todos/_todo.html.haml b/app/views/dashboard/todos/_todo.html.haml index cc77388563f8a55d1bfa8e0e45a03228937fbef5..cc077fad32ab805af72a2839258533e9292bfd81 100644 --- a/app/views/dashboard/todos/_todo.html.haml +++ b/app/views/dashboard/todos/_todo.html.haml @@ -19,7 +19,7 @@ (removed) · #{time_ago_with_tooltip(todo.created_at)} - · #{todo_due_date(todo)} + = todo_due_date(todo) .todo-body .todo-note