mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-23 06:45:19 -07:00
Fix paging breaking in bulk import.
This commit is contained in:
parent
35b384439f
commit
62b45f7ea7
2 changed files with 5 additions and 2 deletions
|
@ -53,8 +53,11 @@ module.exports = Marionette.Layout.extend({
|
||||||
|
|
||||||
_pageSizeChanged : function(event) {
|
_pageSizeChanged : function(event) {
|
||||||
var pageSize = parseInt($(event.target).val());
|
var pageSize = parseInt($(event.target).val());
|
||||||
|
this.bulkImportCollection.fullCollection.reset();
|
||||||
|
this.bulkImportCollection.reset();
|
||||||
|
//debugger;
|
||||||
this.bulkImportCollection.setPageSize(pageSize);
|
this.bulkImportCollection.setPageSize(pageSize);
|
||||||
this.bulkImportCollection.fetch();
|
//this.bulkImportCollection.fetch();
|
||||||
},
|
},
|
||||||
|
|
||||||
columns : [
|
columns : [
|
||||||
|
|
|
@ -5,4 +5,4 @@
|
||||||
<option value="100">100</option>
|
<option value="100">100</option>
|
||||||
<option value="500">500</option>
|
<option value="500">500</option>
|
||||||
<option value="1000">1000</option>
|
<option value="1000">1000</option>
|
||||||
</select>
|
</select>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue