From 9ada331212c0f5cd7ab19b9b2a639c4016832be6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milorad=20FIlipovi=C4=87?= Date: Sat, 1 Apr 2023 07:45:11 +0200 Subject: [PATCH] fix(editor): Update execution loading parameters after pushing test values (no-changelog) (#5876) --- .../src/components/ExecutionsView/ExecutionsList.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/editor-ui/src/components/ExecutionsView/ExecutionsList.vue b/packages/editor-ui/src/components/ExecutionsView/ExecutionsList.vue index 08babeb3ec..e92af5cc4b 100644 --- a/packages/editor-ui/src/components/ExecutionsView/ExecutionsList.vue +++ b/packages/editor-ui/src/components/ExecutionsView/ExecutionsList.vue @@ -67,9 +67,9 @@ import { useTagsStore } from '@/stores/tags'; import { executionFilterToQueryFilter } from '@/utils/executionUtils'; // Number of execution pages that are fetched before temporary execution card is shown -const MAX_LOADING_ATTEMPTS = 1; +const MAX_LOADING_ATTEMPTS = 5; // Number of executions fetched on each page -const LOAD_MORE_PAGE_SIZE = 10; +const LOAD_MORE_PAGE_SIZE = 100; export default mixins( restApi,