Skip to content

Commit

Permalink
Merge pull request #819 from HiP-App/iss-hipcms-1053
Browse files Browse the repository at this point in the history
resolved the problem with the site hanging up
  • Loading branch information
rajatkhanna1994 authored Jul 15, 2018
2 parents 07ee999 + e7279c2 commit dedd4f8
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 dedd4f8

Please sign in to comment.