diff --git a/client/lib/datepicker.js b/client/lib/datepicker.js index 83a202134..84e4047f4 100644 --- a/client/lib/datepicker.js +++ b/client/lib/datepicker.js @@ -113,7 +113,7 @@ export class DatePicker extends BlazeComponent { const newTime = moment(time, adjustedTimeFormat(), true); const dateValue = Utils.normalizeDigits(evt.target.date.value); const newDate = moment(dateValue, 'L', true); - const dateString = ${dateValue} ${time}; + const dateString = `${dateValue} ${time}`; const newCompleteDate = moment( dateString, `L ${adjustedTimeFormat()}`,