mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-27 04:21:27 +02:00
Fix paging breaking in bulk import.
This commit is contained in:
@@ -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 : [
|
||||||
|
Reference in New Issue
Block a user