mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-17 21:26:22 -04:00
Fix paging breaking in bulk import.
This commit is contained in:
@@ -53,8 +53,11 @@ module.exports = Marionette.Layout.extend({
|
||||
|
||||
_pageSizeChanged : function(event) {
|
||||
var pageSize = parseInt($(event.target).val());
|
||||
this.bulkImportCollection.fullCollection.reset();
|
||||
this.bulkImportCollection.reset();
|
||||
//debugger;
|
||||
this.bulkImportCollection.setPageSize(pageSize);
|
||||
this.bulkImportCollection.fetch();
|
||||
//this.bulkImportCollection.fetch();
|
||||
},
|
||||
|
||||
columns : [
|
||||
|
||||
@@ -5,4 +5,4 @@
|
||||
<option value="100">100</option>
|
||||
<option value="500">500</option>
|
||||
<option value="1000">1000</option>
|
||||
</select>
|
||||
</select>
|
||||
|
||||
Reference in New Issue
Block a user