File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -921,9 +921,6 @@ export class FormStore {
921
921
const { recursive, dirty } = options || { } ;
922
922
923
923
this . getFieldEntities ( true ) . forEach ( ( field : FieldEntity ) => {
924
- if ( field . isList ( ) ) {
925
- return ;
926
- }
927
924
// Add field if not provide `nameList`
928
925
if ( ! provideNameList ) {
929
926
namePathList . push ( field . getNamePath ( ) ) ;
@@ -1003,7 +1000,7 @@ export class FormStore {
1003
1000
const returnPromise : Promise < Store | ValidateErrorEntity | string [ ] > = summaryPromise
1004
1001
. then ( ( ) : Promise < Store | string [ ] > => {
1005
1002
if ( this . lastValidatePromise === summaryPromise ) {
1006
- return Promise . resolve ( this . getFieldsValue ( namePathList ) ) ;
1003
+ return Promise . resolve ( this . getFieldsValue ( { strict : true } ) ) ;
1007
1004
}
1008
1005
return Promise . reject < string [ ] > ( [ ] ) ;
1009
1006
} )
You can’t perform that action at this time.
0 commit comments