mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 20:54:07 -08:00
fix(editor): Update execution loading parameters after pushing test values (no-changelog) (#5876)
This commit is contained in:
parent
946f7f38ba
commit
9ada331212
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue