mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-23 06:45:19 -07: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() {
|
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;
|
return this;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue