From 60cf7a98cb3c41f64563ab86aed96b0b1f6f3e34 Mon Sep 17 00:00:00 2001 From: VTHINKXIE Date: Tue, 19 Dec 2017 00:35:12 +0800 Subject: [PATCH] fix(module:popconfirm): fix backdrop of popconfirm (#786) close #785 --- src/components/popconfirm/nz-popconfirm.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/popconfirm/nz-popconfirm.component.ts b/src/components/popconfirm/nz-popconfirm.component.ts index 89aaf99a83d..3480dbca85b 100644 --- a/src/components/popconfirm/nz-popconfirm.component.ts +++ b/src/components/popconfirm/nz-popconfirm.component.ts @@ -64,6 +64,7 @@ export class NzPopconfirmComponent extends NzToolTipComponent { private _condition = false; _prefix = 'ant-popover-placement'; _trigger = 'click'; + _hasBackdrop = true; @Input() nzContent; @Input() nzOkText = this._locale.translate('Modal.okText'); @Input() nzCancelText = this._locale.translate('Modal.cancelText');