Skip to content

Commit

Permalink
Détection des changements sur les formulaires méthode change
Browse files Browse the repository at this point in the history
  • Loading branch information
amandine-sahl committed Aug 14, 2024
1 parent f9276ff commit 9c04072
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -504,6 +504,13 @@ export class MonitoringFormComponent implements OnInit {
if (event.types_site != null && event.types_site.length != this.idsTypesSite.size) {
this.updateTypeSiteForm();
}
const change = this.obj.change();
if (!change) {
return;
}
setTimeout(() => {
change({ objForm: this.objForm, meta: this.meta });
}, 100);
}

onObjFormValueChangeDynamic(event, typeSite) {
Expand Down

0 comments on commit 9c04072

Please sign in to comment.