add missing space

bug introduced in c46e5a9e1d

fixes #2063
This commit is contained in:
Carsten Otto 2017-02-28 22:16:48 +01:00
parent 26d0c873c7
commit 238b2fd670

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