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

Merge pull request #3 from Qstick/fix/ArtistDelete

Fixes Artist Delete after Previous UI Work
This commit is contained in:
Joseph Milazzo 2017-06-04 19:47:13 -05:00 committed by GitHub
commit 49b616b69d

View file

@ -42,8 +42,8 @@ var view = Marionette.ItemView.extend({
vent.trigger(vent.Commands.CloseModalCommand);
},
_removeSeries : function() {
vent.trigger(vent.Commands.DeleteSeriesCommand, { series : this.model });
_removeArtist : function() {
vent.trigger(vent.Commands.DeleteArtistCommand, { artist : this.model });
}
});