1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-02-20 13:06:57 +00:00

Merge pull request #17 from Qstick/fix/UIfix

Fix two small UI bugs
This commit is contained in:
Joseph Milazzo 2017-05-30 20:35:33 -05:00 committed by GitHub
commit 36f27058fa
2 changed files with 2 additions and 2 deletions

View file

@ -121,6 +121,6 @@ module.exports = Marionette.ItemView.extend({
var updateFilesArtistView = new UpdateFilesArtistView({ artist : selected });
this.listenToOnce(updateFilesArtistView, 'updatingFiles', this._afterSave);
vent.trigger(vent.Commands.OpenModalCommand, updateFilesSeriesView);
vent.trigger(vent.Commands.OpenModalCommand, updateFilesArtistView);
}
});

View file

@ -40,7 +40,7 @@ Handlebars.registerHelper('tvMazeUrl', function() {
});
Handlebars.registerHelper('route', function() {
return StatusModel.get('urlBase') + '/artist/' + this.titleSlug;
return StatusModel.get('urlBase') + '/artist/' + this.artistSlug;
});
Handlebars.registerHelper('percentOfEpisodes', function() {