cloud-b2b 1.1.25 → 1.1.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -240,9 +240,9 @@ var SuperForm2 = /*#__PURE__*/function (_React$Component2) {
|
|
|
240
240
|
return false;
|
|
241
241
|
} else {
|
|
242
242
|
if (type === '>') {
|
|
243
|
-
return date.format('YYYY-MM-DD')
|
|
243
|
+
return date.format('YYYY-MM-DD') < value[key];
|
|
244
244
|
} else if (type === '<') {
|
|
245
|
-
return date.format('YYYY-MM-DD')
|
|
245
|
+
return date.format('YYYY-MM-DD') > value[key];
|
|
246
246
|
} else {
|
|
247
247
|
return false;
|
|
248
248
|
}
|
|
@@ -283,9 +283,9 @@ var SuperForm2 = /*#__PURE__*/function (_React$Component2) {
|
|
|
283
283
|
return false;
|
|
284
284
|
} else {
|
|
285
285
|
if (type === '>') {
|
|
286
|
-
return date.format('YYYY-MM-DD')
|
|
286
|
+
return date.format('YYYY-MM-DD') < value[key];
|
|
287
287
|
} else if (type === '<') {
|
|
288
|
-
return date.format('YYYY-MM-DD')
|
|
288
|
+
return date.format('YYYY-MM-DD') > value[key];
|
|
289
289
|
} else {
|
|
290
290
|
return false;
|
|
291
291
|
}
|