Skip to content

Commit

Permalink
Fixed #958
Browse files Browse the repository at this point in the history
  • Loading branch information
Çağatay Çivici committed Sep 27, 2016
1 parent 94c2379 commit 5c44146
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/confirmdialog/confirmdialog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ export class ConfirmDialog implements AfterViewInit,OnDestroy {
protected renderer: Renderer, private confirmationService: ConfirmationService) {
this.subscription = confirmationService.requireConfirmation$.subscribe(confirmation => {
this.confirmation = confirmation;
this.message = this.message||this.confirmation.message;
this.icon = this.icon||this.confirmation.icon;
this.header = this.header||this.confirmation.header;
this.message = this.confirmation.message||this.message;
this.icon = this.confirmation.icon||this.icon;
this.header = this.confirmation.header||this.header;

if(this.confirmation.accept) {
this.confirmation.acceptEvent = new EventEmitter();
Expand Down

0 comments on commit 5c44146

Please sign in to comment.