This commit is contained in:
lotte
2020-02-13 08:49:24 +01:00
parent 0f539ea7d7
commit 6053d0691f
2 changed files with 1 additions and 4 deletions

View File

@@ -162,7 +162,7 @@ export class DsDynamicFormArrayComponent extends DynamicFormArrayComponent imple
if (reorderable instanceof ReorderableFormFieldMetadataValue) {
const reoMD = reorderable as ReorderableFormFieldMetadataValue;
const mdl = Object.assign({}, reoMD.model, { value: reoMD.metadataValue });
super.onChange({
this.onChange({
$event: { previousIndex: prevIndex },
context: { index },
control: reoMD.control,

View File

@@ -336,11 +336,8 @@ export class SubmissionObjectEffects {
console.log(submissionId, sectionId, sectionData, sectionErrors);
mappedActions.push(new UpdateSectionDataAction(submissionId, sectionId, sectionData, sectionErrors));
}
});
}
return mappedActions;
}