Skip to content

Commit

Permalink
fix(module:popconfirm): reverting missing nzPopconfirmVisibleChange (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
volvachev committed Apr 21, 2022
1 parent d169452 commit 561041c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions components/popconfirm/popconfirm.ts
Expand Up @@ -76,6 +76,8 @@ export class NzPopconfirmDirective extends NzTooltipBaseDirective {
@Input() @WithConfig() nzPopconfirmBackdrop?: boolean = false;
@Input() @WithConfig() nzAutofocus: NzAutoFocusType = null;

// eslint-disable-next-line @angular-eslint/no-output-rename
@Output('nzPopconfirmVisibleChange') override readonly visibleChange = new EventEmitter<boolean>();
@Output() readonly nzOnCancel = new EventEmitter<void>();
@Output() readonly nzOnConfirm = new EventEmitter<void>();

Expand Down

0 comments on commit 561041c

Please sign in to comment.