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

Fix two small UI bugs

This commit is contained in:
Qstick 2017-05-30 21:12:00 -04:00
parent da898cfd84
commit b87c6ef7c7
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() {