Skip to content

Commit

Permalink
fix(dialog): 没有定于模版变量
Browse files Browse the repository at this point in the history
  • Loading branch information
stbui committed Sep 1, 2018
1 parent e29cdfc commit ce4a6ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/component/dialog/confirm/confirm.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
{{message}}
</stbui-dialog-content>
<stbui-dialog-actions>
<button mat-button (keydown.arrowright)="acceptBtn.focus()" (click)="cancel()">{{cancelButton}}</button>
<button mat-button (keydown.arrowleft)="closeBtn.focus()" (click)="accept()" color="accent">{{acceptButton}}</button>
<button mat-button #closeBtn (keydown.arrowright)="acceptBtn.focus()" (click)="cancel()">{{cancelButton}}</button>
<button mat-button #acceptBtn (keydown.arrowleft)="closeBtn.focus()" (click)="accept()" color="accent">{{acceptButton}}</button>
</stbui-dialog-actions>
</stbui-dialog>

0 comments on commit ce4a6ae

Please sign in to comment.