This commit is contained in:
2020-02-28 23:10:57 +00:00
parent b06d6d71af
commit dfa10e4c0d
4 changed files with 50 additions and 10 deletions

View File

@@ -207,7 +207,7 @@ export default {
//Only process if value is non-null since all control types can handle null
if (ret != null) {
//check types that matter
/*
/*thes are all types, not necessarily all custom field types
NoType = 0,
DateTime = 1,
Date = 2,
@@ -229,7 +229,6 @@ export default {
case 2:
case 3:
//can it be parsed into a date using the same library as the components use?
//window.$gz.DateTime.fromISO(valueStart);
if (!window.$gz.DateTime.fromISO(ret).isValid) {
ret = null;
}