Skip to content

Commit

Permalink
fix(frront) add target blank on editlog links fix #477
Browse files Browse the repository at this point in the history
  • Loading branch information
t8g committed Oct 13, 2017
1 parent 637e088 commit 67b8c37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/app/log-table/log-table.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@

<td>{{ log.date | date:'yyyy-MM-dd HH:mm' }}</td>
<td *ngIf="!hideItemCol">
<a *ngIf="log.action !== 'delete';else nolink" [routerLink]="['/', feature, { outlets: { editor: log.item.id } }]" queryParamsHandling="preserve">{{ log.item.name }}</a>
<a target="_blank" *ngIf="log.action !== 'delete';else nolink" [routerLink]="['/', feature, { outlets: { editor: log.item.id } }]" queryParamsHandling="preserve">{{ log.item.name }}</a>
<ng-template #nolink>{{ log.item.name }}</ng-template>
</td>
<td [class.bleft]="log._open">{{ 'editLogs.actions.' + log.action | translate }}</td>
Expand Down

0 comments on commit 67b8c37

Please sign in to comment.