mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08:00
update default stem values
This commit is contained in:
parent
b33e84129f
commit
93937ed3c0
|
@ -64,7 +64,7 @@ export const INSTANCE_ID_HEADER = 'n8n-instance-id';
|
|||
export const WAIT_TIME_UNLIMITED = '3000-01-01T00:00:00.000Z';
|
||||
|
||||
if (!window.localStorage.getItem('JSPLUMB_FLOWCHART_STUB')) {
|
||||
window.localStorage.setItem('JSPLUMB_FLOWCHART_STUB', '50');
|
||||
window.localStorage.setItem('JSPLUMB_FLOWCHART_STUB', '20');
|
||||
}
|
||||
// @ts-ignore
|
||||
const _JSPLUMB_FLOWCHART_STUB = parseInt(window.localStorage.getItem('JSPLUMB_FLOWCHART_STUB'), 10);
|
||||
|
|
|
@ -207,7 +207,7 @@ if (!window.localStorage.getItem('OUTLINE_STROKE_WIDTH')) {
|
|||
const _OUTLINE_STROKE_WIDTH = parseInt(window.localStorage.getItem('OUTLINE_STROKE_WIDTH'), 10);
|
||||
|
||||
if (!window.localStorage.getItem('ALWAYS_RESPECT_STUB')) {
|
||||
window.localStorage.setItem('ALWAYS_RESPECT_STUB', 'false');
|
||||
window.localStorage.setItem('ALWAYS_RESPECT_STUB', 'true');
|
||||
}
|
||||
// @ts-ignore
|
||||
const _ALWAYS_RESPECT_STUB = window.localStorage.getItem('ALWAYS_RESPECT_STUB') === 'true';
|
||||
|
|
Loading…
Reference in a new issue