Skip to content

Commit

Permalink
fix(module:popconfirm): missing arrow (#7086)
Browse files Browse the repository at this point in the history
* fix(module:popconfirm): missing arrow

* chore:  trigger ci

* fix: lint error
  • Loading branch information
chenc041 committed Dec 16, 2021
1 parent 0ece612 commit 3f4a704
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion components/popconfirm/popconfirm.ts
Expand Up @@ -159,7 +159,9 @@ export class NzPopconfirmDirective extends NzTooltipBaseDirective {
[@zoomBigMotion]="'active'"
>
<div class="ant-popover-content">
<div class="ant-popover-arrow" *ngIf="nzPopconfirmShowArrow"></div>
<div class="ant-popover-arrow" *ngIf="nzPopconfirmShowArrow">
<span class="ant-popover-arrow-content"></span>
</div>
<div class="ant-popover-inner">
<div>
<div class="ant-popover-inner-content">
Expand Down

0 comments on commit 3f4a704

Please sign in to comment.