mobx-react-form
Advanced tools
Comparing version 1.14.3 to 1.14.4
@@ -298,3 +298,3 @@ 'use strict'; | ||
var data = $this.deepMap(prop, $this.fields); | ||
return $this.incremental ? $this.parseProp(data, prop) : data; | ||
return $this.hasIncrementalNestedFields ? $this.parseProp(data, prop) : data; | ||
} | ||
@@ -415,3 +415,5 @@ | ||
return Object.assign(obj, _defineProperty({}, field.key, field.incremental ? $this.parseProp(data, prop) : data)); | ||
var value = field.hasIncrementalNestedFields ? $this.parseProp(data, prop) : data; | ||
return Object.assign(obj, _defineProperty({}, field.key, value)); | ||
}, {}); | ||
@@ -418,0 +420,0 @@ }, |
{ | ||
"name": "mobx-react-form", | ||
"license": "MIT", | ||
"version": "1.14.3", | ||
"version": "1.14.4", | ||
"author": "Claudio Savino <claudio.savino@me.com> (https://twitter.com/foxhound87)", | ||
@@ -6,0 +6,0 @@ "description": "Automagically manage React forms state and automatic validation with MobX.", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
1947202
14159