Increase number of result for multiselect in export

This commit is contained in:
Tiago Rascazzi
2022-01-08 12:30:42 -05:00
parent 9c873127a5
commit 33d1022a73

View File

@ -115,7 +115,9 @@ export default {
let apiFactory = new ApiApiFactory()
this.recipes_loading = true
apiFactory.listRecipes(query).then((response) => {
let maxResultLenght = 1000
apiFactory.listRecipes(query, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, 1, maxResultLenght).then((response) => {
this.recipes = response.data.results;
this.recipes_loading = false
}).catch((err) => {