alaska-field-datetime
Advanced tools
Comparing version 0.12.9 to 0.12.10
{ | ||
"name": "alaska-field-datetime", | ||
"version": "0.12.9", | ||
"version": "0.12.10", | ||
"description": "Alaska datetime field", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -48,3 +48,6 @@ // @flow | ||
onChange={(v) => { | ||
onChange(v.format()); | ||
v = v || ''; | ||
// $Flow v is moment | ||
v = v.format ? v.format() : ''; | ||
onChange(v); | ||
}} | ||
@@ -51,0 +54,0 @@ />; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
10592
344