Merge pull request #2064 from C-Otto/master

add missing space
This commit is contained in:
Dan Rice 2017-02-28 22:00:08 -05:00 committed by GitHub
commit b8ab28819c

View file

@ -96,7 +96,7 @@ module ApplicationHelper
when "ends_on_end_date"
starts = time_span_text(rt.start_from, I18n.t("todos.recurrence.pattern.from"))
ends = time_span_text(rt.end_date, I18n.t("todos.recurrence.pattern.until"))
return starts+ends
return starts + " " + ends
else
raise Exception.new, "unknown recurrence time span selection (#{rt.ends_on})"
end