Hi, I was watching the example of the following link and try to implement the trigger
https://stackblitz.com/edit/countdown-timer?file=app%2Fapp.module.ts
Add the line (zeroTrigger) = "checkStatus ()" and declare the checkStatus function inside the app.component.ts.
checkStatus () {
this.name = 'It is 0';
}
When the counter reaches 0 it does not execute the function, it does not show the message.
Could it be that I'm missing something?