fix: Added new row addition action for form value changes (#7682)

This commit is contained in:
Ayush Pahwa 2021-09-28 17:06:03 +05:30 committed by GitHub
parent b4bab33d1e
commit f8442622b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -101,6 +101,8 @@ export default function* root() {
takeEvery(ReduxActionTypes.CREATE_ACTION_SUCCESS, handleActionCreatedSaga),
// Intercepting the redux-form change actionType
takeEvery(ReduxFormActionTypes.VALUE_CHANGE, formValueChangeSaga),
// Calling form valye change on adding/removing where clause statement
takeEvery(ReduxFormActionTypes.ARRAY_REMOVE, formValueChangeSaga),
takeEvery(ReduxFormActionTypes.ARRAY_PUSH, formValueChangeSaga),
]);
}