From 33d1022a738c5b1843cee1e00807dc63e5288fef Mon Sep 17 00:00:00 2001 From: Tiago Rascazzi Date: Sat, 8 Jan 2022 12:30:42 -0500 Subject: [PATCH] Increase number of result for multiselect in export --- vue/src/apps/ExportView/ExportView.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vue/src/apps/ExportView/ExportView.vue b/vue/src/apps/ExportView/ExportView.vue index a9bbaceb7..160cbe9e2 100644 --- a/vue/src/apps/ExportView/ExportView.vue +++ b/vue/src/apps/ExportView/ExportView.vue @@ -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) => {