@shopify/react-form-state
Advanced tools
Comparing version 0.11.7 to 0.11.8
@@ -8,2 +8,9 @@ # Changelog | ||
<!-- ## Unreleased --> | ||
## [0.11.8] - 2019-08-29 | ||
### Fixed | ||
- Fixed using multiple layers deep of nested `<List />` inside of `<List />` | ||
## [0.11.3] | ||
@@ -10,0 +17,0 @@ |
@@ -38,3 +38,5 @@ "use strict"; | ||
var innerFields = utilities_1.mapObject(fieldValues, function (value, fieldPath) { | ||
var initialFieldValue = initialValue[index] && initialValue[index][fieldPath]; | ||
var initialFieldValue = initialValue && | ||
initialValue[index] && | ||
initialValue[index][fieldPath]; | ||
return { | ||
@@ -41,0 +43,0 @@ value: value, |
{ | ||
"name": "@shopify/react-form-state", | ||
"version": "0.11.7", | ||
"version": "0.11.8", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "description": "Manage react forms tersely and type-safe with no magic.", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
193144
4243