mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-30 11:48:26 -07:00
Fixed issues with edit/delete series modal.
This commit is contained in:
parent
62cea8de5e
commit
437a28c10d
8 changed files with 29 additions and 50 deletions
|
@ -3,9 +3,8 @@
|
|||
define(
|
||||
[
|
||||
'app',
|
||||
'Cells/NzbDroneCell',
|
||||
'Episode/Layout'
|
||||
], function (App, NzbDroneCell, EpisodeLayout) {
|
||||
'Cells/NzbDroneCell'
|
||||
], function (App, NzbDroneCell) {
|
||||
return NzbDroneCell.extend({
|
||||
|
||||
className: 'episode-title-cell',
|
||||
|
@ -15,8 +14,7 @@ define(
|
|||
},
|
||||
|
||||
showDetails: function () {
|
||||
var view = new EpisodeLayout({ model: this.cellValue });
|
||||
App.modalRegion.show(view);
|
||||
App.vent.trigger(App.Commands.ShowEpisodeDetails, {episode: this.cellValue});
|
||||
},
|
||||
|
||||
render: function () {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue