Fix date parsing

Fixes #3232
This commit is contained in:
Sergio Crisostomo 2018-04-06 23:16:44 +02:00
parent 309912df0c
commit 524dc2a5f6
2 changed files with 10 additions and 4 deletions

View file

@ -147,7 +147,7 @@ export const DEFAULT_FORMATS = {
datetimerange: 'yyyy-MM-dd HH:mm:ss'
};
const RANGE_SEPARATOR = ' - ';
export const RANGE_SEPARATOR = ' - ';
const DATE_FORMATTER = function(value, format) {
return formatDate(value, format);