Merge pull request #17 from Qstick/fix/UIfix

Fix two small UI bugs
pull/1/head
Joseph Milazzo 7 years ago committed by GitHub
commit 36f27058fa

@ -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);
}
});

@ -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() {

Loading…
Cancel
Save