Skip to content

Commit a8830e3

Browse files
committed
fix: added new computed check
1 parent 7619369 commit a8830e3

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/parser.js

+7-3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ const fieldPropsToPick = [
1010
'disabled',
1111
'focus',
1212
'touched',
13+
'changed',
1314
'hasError',
1415
'isValid',
1516
'isEmpty',
@@ -26,10 +27,13 @@ const parseFormData = form =>
2627
toJS(_.pick(form, [
2728
'hasError',
2829
'isValid',
29-
'isEmpty',
30-
'isDefault',
31-
'isPristine',
3230
'isDirty',
31+
'isPristine',
32+
'isDefault',
33+
'isEmpty',
34+
'focus',
35+
'touched',
36+
'changed',
3337
]));
3438

3539
const parseFieldsData = fields =>

0 commit comments

Comments
 (0)