mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-05-08 12:43:19 +02:00
Fixed Movie link in history tab (#637)
This commit is contained in:
parent
736e0d2e70
commit
808033a01c
1 changed files with 1 additions and 1 deletions
|
|
@ -6,7 +6,7 @@ module.exports = TemplatedCell.extend({
|
|||
|
||||
|
||||
render : function() {
|
||||
this.$el.html('<a href="movies/' + this.model.get("movie").get("titleSlug") +'">' + this.model.get("movie").get("title") + '</a>'); //Hack, but somehow handlebar helper does not work.
|
||||
this.$el.html('<a href="/movies/' + this.model.get("movie").get("titleSlug") +'">' + this.model.get("movie").get("title") + '</a>'); //Hack, but somehow handlebar helper does not work.
|
||||
return this;
|
||||
}
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue