Merge pull request #1994 from SergioCrisostomo/fix-nuxified-dates
force string dates parse
This commit is contained in:
commit
19b61e0adb
1 changed files with 2 additions and 0 deletions
|
@ -514,6 +514,8 @@
|
||||||
} else if (val && type === 'timerange' && Array.isArray(val) && val.length === 2 && !(val[0] instanceof Date) && !(val[1] instanceof Date)) {
|
} else if (val && type === 'timerange' && Array.isArray(val) && val.length === 2 && !(val[0] instanceof Date) && !(val[1] instanceof Date)) {
|
||||||
val = val.join(RANGE_SEPARATOR);
|
val = val.join(RANGE_SEPARATOR);
|
||||||
val = parser(val, this.format || DEFAULT_FORMATS[type]);
|
val = parser(val, this.format || DEFAULT_FORMATS[type]);
|
||||||
|
} else if (typeof val === 'string' && type.indexOf('time') !== 0 ){
|
||||||
|
val = parser(val, this.format || DEFAULT_FORMATS[type]);
|
||||||
}
|
}
|
||||||
|
|
||||||
this.internalValue = val;
|
this.internalValue = val;
|
||||||
|
|
Loading…
Add table
Reference in a new issue