Skip to content

Commit

Permalink
resolved the problem with the site hanging up
Browse files Browse the repository at this point in the history
  • Loading branch information
FarnazAria committed Jul 8, 2018
1 parent 07ee999 commit e7279c2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ <h2 md-line>{{ achievement.title }} ({{ achievement.status | translate }}) </h2>
<button md-icon-button color="primary" [routerLink]="['/mobile-content/achievements/edit', achievement.id]" title="{{ 'edit' | translate }}">
<md-icon>edit</md-icon>
</button>
<button md-icon-button click-stop-propagation color="warn" (click)="deleteAchievement(achievement)" *ngIf="!achievements.used" title="{{ 'delete' | translate }}">
<button md-icon-button click-stop-propagation color="warn" (click)="deleteAchievement(achievement)" *ngIf="achievements != undefined && !achievements.used" title="{{ 'delete' | translate }}">
<md-icon>delete_forever</md-icon>
</button>

Expand Down

0 comments on commit e7279c2

Please sign in to comment.