Skip to content

Commit

Permalink
fix(module: actionsheet): fix code title->message error (#283)
Browse files Browse the repository at this point in the history
  • Loading branch information
Guoyuanqiang authored and fisherspy committed Feb 20, 2019
1 parent 5cd1f6c commit f850e1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/action-sheet/action-sheet.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<ng-template *ngIf="isTemplateRef(option.title)" [ngTemplateOutlet]="option.title"></ng-template>
<h3 *ngIf="!isTemplateRef(option.title)" class="{{option.prefixCls}}-title">{{option.title}}</h3>
</ng-container>
<ng-container *ngIf="!isNoTitle(option.title)">
<ng-container *ngIf="!isNoTitle(option.message)">
<ng-template *ngIf="isTemplateRef(option.message)" [ngTemplateOutlet]="option.message"></ng-template>
<div *ngIf="!isTemplateRef(option.message)" class="{{option.prefixCls}}-message">{{option.message}}</div>
</ng-container>
Expand Down

0 comments on commit f850e1a

Please sign in to comment.