add pushing nodes length

This commit is contained in:
Mutasem 2021-10-19 11:24:36 +02:00
parent 0dcd8a23a5
commit 30ad6020bd

View file

@ -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,