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 {
921921 const { recursive, dirty } = options || { } ;
922922
923923 this . getFieldEntities ( true ) . forEach ( ( field : FieldEntity ) => {
924- if ( field . isList ( ) ) {
925- return ;
926- }
927924 // Add field if not provide `nameList`
928925 if ( ! provideNameList ) {
929926 namePathList . push ( field . getNamePath ( ) ) ;
@@ -1003,7 +1000,7 @@ export class FormStore {
10031000 const returnPromise : Promise < Store | ValidateErrorEntity | string [ ] > = summaryPromise
10041001 . then ( ( ) : Promise < Store | string [ ] > => {
10051002 if ( this . lastValidatePromise === summaryPromise ) {
1006- return Promise . resolve ( this . getFieldsValue ( namePathList ) ) ;
1003+ return Promise . resolve ( this . getFieldsValue ( { strict : true } ) ) ;
10071004 }
10081005 return Promise . reject < string [ ] > ( [ ] ) ;
10091006 } )
You can’t perform that action at this time.
0 commit comments