Increaed number of slot fillers loaded by the slot fill dialog to 20
This commit is contained in:
@@ -50,7 +50,7 @@ Meteor.publish('slotFillers', function(slotId){
|
||||
}
|
||||
this.autorun(function(){
|
||||
// Get the limit of the documents the user can fetch
|
||||
var limit = self.data('limit') || 16;
|
||||
var limit = self.data('limit') || 20;
|
||||
check(limit, Number);
|
||||
|
||||
// Get the search term
|
||||
|
||||
@@ -196,7 +196,7 @@ export default {
|
||||
},
|
||||
loadMore(){
|
||||
if (this.currentLimit >= this.countAll) return;
|
||||
this._subs['slotFillers'].setData('limit', this.currentLimit + 16);
|
||||
this._subs['slotFillers'].setData('limit', this.currentLimit + 20);
|
||||
},
|
||||
insert(){
|
||||
if (!this.selectedNode) return;
|
||||
|
||||
Reference in New Issue
Block a user