All Questions
1 question
0
votes
1
answer
2k
views
Angular 6 subscribe Event on constructor called multiple times
In my component on constructor (Child Component) I add simple event
This is my code:
this._modalService.onHidden.subscribe(
result => {
console.log("_modalService.onHidden");
...