mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 15:33:04 +00:00
[835] Auto-save in new Item Submission form breaks the form
Section formId added to the section state. Error filtering during the parsing of the submission response.
This commit is contained in:
@@ -161,8 +161,8 @@ export class FormService {
|
||||
return (environment.form.validatorMap.hasOwnProperty(validator)) ? environment.form.validatorMap[validator] : validator;
|
||||
}
|
||||
|
||||
public initForm(formId: string, model: DynamicFormControlModel[], valid: boolean, additional?: any) {
|
||||
this.store.dispatch(new FormInitAction(formId, this.formBuilderService.getValueFromModel(model), valid, additional));
|
||||
public initForm(formId: string, model: DynamicFormControlModel[], valid: boolean) {
|
||||
this.store.dispatch(new FormInitAction(formId, this.formBuilderService.getValueFromModel(model), valid));
|
||||
}
|
||||
|
||||
public setStatusChanged(formId: string, valid: boolean) {
|
||||
|
Reference in New Issue
Block a user