mirror of
https://github.com/lidarr/Lidarr
synced 2025-03-03 18:15:37 +00:00
fixed build
This commit is contained in:
parent
9515064f14
commit
feb947fb74
4 changed files with 17 additions and 4 deletions
|
@ -103,6 +103,7 @@
|
||||||
<Compile Include="EnsureThat\Resources\ExceptionMessages.Designer.cs" />
|
<Compile Include="EnsureThat\Resources\ExceptionMessages.Designer.cs" />
|
||||||
<Compile Include="EnsureThat\StringExtensions.cs" />
|
<Compile Include="EnsureThat\StringExtensions.cs" />
|
||||||
<Compile Include="EnsureThat\TypeParam.cs" />
|
<Compile Include="EnsureThat\TypeParam.cs" />
|
||||||
|
<Compile Include="Serializer\JsonSerializer.cs" />
|
||||||
<Compile Include="Messaging\CommandCompletedEvent.cs" />
|
<Compile Include="Messaging\CommandCompletedEvent.cs" />
|
||||||
<Compile Include="Messaging\CommandStartedEvent.cs" />
|
<Compile Include="Messaging\CommandStartedEvent.cs" />
|
||||||
<Compile Include="Messaging\CommandFailedEvent.cs" />
|
<Compile Include="Messaging\CommandFailedEvent.cs" />
|
||||||
|
@ -120,7 +121,6 @@
|
||||||
<Compile Include="Expansive\Tree.cs" />
|
<Compile Include="Expansive\Tree.cs" />
|
||||||
<Compile Include="Expansive\TreeNode.cs" />
|
<Compile Include="Expansive\TreeNode.cs" />
|
||||||
<Compile Include="Expansive\TreeNodeList.cs" />
|
<Compile Include="Expansive\TreeNodeList.cs" />
|
||||||
<Compile Include="Serializer\JsonSerializer.cs" />
|
|
||||||
<Compile Include="Instrumentation\VersionLayoutRenderer.cs" />
|
<Compile Include="Instrumentation\VersionLayoutRenderer.cs" />
|
||||||
<Compile Include="Messaging\MessageExtensions.cs" />
|
<Compile Include="Messaging\MessageExtensions.cs" />
|
||||||
<Compile Include="Messaging\TestCommand.cs" />
|
<Compile Include="Messaging\TestCommand.cs" />
|
||||||
|
|
|
@ -25,7 +25,7 @@ define(['app'], function () {
|
||||||
name : 'airDate',
|
name : 'airDate',
|
||||||
label : 'Air Date',
|
label : 'Air Date',
|
||||||
editable : false,
|
editable : false,
|
||||||
cell : 'datetime'
|
cell : 'date'
|
||||||
//formatter: new Backgrid.AirDateFormatter()
|
//formatter: new Backgrid.AirDateFormatter()
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
@ -1,7 +1,20 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
define(['app', 'Series/SeasonModel'], function () {
|
define(['app', 'Series/SeasonModel'], function () {
|
||||||
NzbDrone.Series.SeasonCollection = Backbone.Collection.extend({
|
NzbDrone.Series.SeasonCollection = Backbone.PageableCollection.extend({
|
||||||
url : NzbDrone.Constants.ApiRoot + '/season',
|
url : NzbDrone.Constants.ApiRoot + '/season',
|
||||||
model: NzbDrone.Series.SeasonModel
|
model: NzbDrone.Series.SeasonModel,
|
||||||
|
|
||||||
|
mode: 'client',
|
||||||
|
|
||||||
|
state: {
|
||||||
|
sortKey : 'seasonNumber',
|
||||||
|
order : 1,
|
||||||
|
pageSize: 1000000
|
||||||
|
},
|
||||||
|
|
||||||
|
queryParams: {
|
||||||
|
sortKey: null,
|
||||||
|
order : null
|
||||||
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue