diff --git a/components/statistic/countdown.component.ts b/components/statistic/countdown.component.ts index 06f83946af..2e7fa34055 100644 --- a/components/statistic/countdown.component.ts +++ b/components/statistic/countdown.component.ts @@ -115,7 +115,10 @@ export class NzCountdownComponent extends NzStatisticComponent implements OnInit if (this.diff === 0) { this.stopTimer(); - this.nzCountdownFinish.emit(); + + if (this.nzCountdownFinish.observers.length) { + this.ngZone.run(() => this.nzCountdownFinish.emit()); + } } } }