mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-31 23:47:28 -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';
|
const _ALWAYS_RESPECT_STUB = window.localStorage.getItem('ALWAYS_RESPECT_STUB') === 'true';
|
||||||
|
|
||||||
if (!window.localStorage.getItem('PUSH_NODES_LENGTH')) {
|
if (!window.localStorage.getItem('PUSH_NODES_LENGTH')) {
|
||||||
window.localStorage.setItem('PUSH_NODES_LENGTH', 'false');
|
window.localStorage.setItem('PUSH_NODES_LENGTH', '200');
|
||||||
}
|
}
|
||||||
// @ts-ignore
|
// @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(
|
export default mixins(
|
||||||
copyPaste,
|
copyPaste,
|
||||||
|
|
Loading…
Reference in a new issue