Skip to content

Commit

Permalink
[Issue #253] Fix the links in ComicListItem.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcpierce committed Jun 21, 2020
1 parent 5a22201 commit 5860d6c
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -24,7 +24,7 @@ <h2>{{comic.title || 'comic-list-item.label.no-title'|translate}}</h2>
<strong>{{'comic-list-item.label.publisher'|translate}}</strong>
</div>
<div class='ui-g-12'>
<a [routerLink]='["/publishers",comic.publisher||"undefined"]'>{{comic.imprint || comic.publisher || 'comic-list-item.label.unknown'|translate}}
<a [routerLink]='["/comics", "publishers",comic.publisher||"undefined"]'>{{comic.imprint || comic.publisher || 'comic-list-item.label.unknown'|translate}}
<span *ngIf='comic.imprint'>({{comic.publisher}})</span></a>
</div>
</div>
Expand All @@ -35,7 +35,7 @@ <h2>{{comic.title || 'comic-list-item.label.no-title'|translate}}</h2>
<strong>{{'comic-list-item.label.series'|translate}}</strong>
</div>
<div class='ui-g-12'>
<a [routerLink]='["/series",comic.series||"undefined"]'>{{comic.series || 'comic-list-item.label.unknown'|translate}}</a>
<a [routerLink]='["/comics", "series",comic | seriesCollectionName]'>{{comic.series || 'comic-list-item.label.unknown'|translate}}</a>
</div>
</div>
</div>
Expand Down

0 comments on commit 5860d6c

Please sign in to comment.