mirror of
https://github.com/Radarr/Radarr
synced 2026-01-05 23:27:00 +01:00
Fixed: Adding a new series and going to series details will show data after information is fetched Fixed: Series details won't reload view after update
17 lines
322 B
JavaScript
17 lines
322 B
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'backbone'
|
|
], function (Backbone) {
|
|
return Backbone.Model.extend({
|
|
|
|
defaults: {
|
|
seasonNumber: 0
|
|
},
|
|
|
|
initialize: function () {
|
|
this.set('id', this.get('seasonNumber'));
|
|
}
|
|
});
|
|
});
|
|
|