Fix IMDB links for TV shows not working

Links for TV shows were just relative paths to their imdb ID. 
ex: `href="tt0944947"` for Game of Thrones
This commit is contained in:
Nirmal Patel 2020-04-09 12:24:31 -04:00 committed by GitHub
commit 7533aa6f00
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -68,7 +68,7 @@
<div class="col-sm-8 small-padding">
<div>
<a *ngIf="node.imdbId" href="{{node.imdbId}}" target="_blank">
<a *ngIf="node.imdbId" href="http://www.imdb.com/title/{{node.imdbId}}/" target="_blank">
<h4>{{node.title}} ({{node.firstAired | amLocal | amDateFormat: 'YYYY'}})</h4>
</a>