保存機能が成功したら、どうすれば ng-bootstrap モーダルを閉じることができますか?
これが私がこれまでに持っているものです:
save(form, activeModal) {
this.goalsService.createNewGoal(this.team_id, form.value, this.date_created, this.date_modified)
.subscribe(
() => {
form.reset();
activeModal.dismiss('Successfully created Goal');
},
err => alert(`error creating goal ${err}`)
);
}