mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-29 06:29:42 -08:00
add pushing nodes length
This commit is contained in:
parent
0dcd8a23a5
commit
30ad6020bd
|
@ -213,10 +213,10 @@ if (!window.localStorage.getItem('ALWAYS_RESPECT_STUB')) {
|
|||
const _ALWAYS_RESPECT_STUB = window.localStorage.getItem('ALWAYS_RESPECT_STUB') === 'true';
|
||||
|
||||
if (!window.localStorage.getItem('PUSH_NODES_LENGTH')) {
|
||||
window.localStorage.setItem('PUSH_NODES_LENGTH', 'false');
|
||||
window.localStorage.setItem('PUSH_NODES_LENGTH', '200');
|
||||
}
|
||||
// @ts-ignore
|
||||
const _PUSH_NODES_LENGTH = parseInt(window.localStorage.getItem('PUSH_NODES_LENGTH'), 200);
|
||||
const _PUSH_NODES_LENGTH = parseInt(window.localStorage.getItem('PUSH_NODES_LENGTH'), 10);
|
||||
|
||||
export default mixins(
|
||||
copyPaste,
|
||||
|
|
Loading…
Reference in a new issue