mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
more validation
This commit is contained in:
parent
e4c8255d69
commit
488da59143
14 changed files with 105 additions and 69 deletions
|
@ -5,8 +5,9 @@ define(
|
|||
'marionette',
|
||||
'Quality/QualityProfileCollection',
|
||||
'Mixins/AsModelBoundView',
|
||||
'Mixins/AsValidatedView',
|
||||
'Mixins/AutoComplete'
|
||||
], function (App, Marionette, QualityProfiles, AsModelBoundView) {
|
||||
], function (App, Marionette, QualityProfiles, AsModelBoundView, AsValidatedView) {
|
||||
|
||||
var view = Marionette.ItemView.extend({
|
||||
template: 'Series/Edit/EditSeriesTemplate',
|
||||
|
@ -49,5 +50,6 @@ define(
|
|||
});
|
||||
|
||||
|
||||
return AsModelBoundView.apply(view);
|
||||
AsModelBoundView.apply(view);
|
||||
return AsValidatedView.apply(view);
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue