From f7ba3bd08fa9181180f99f4e5ebd5ec916fbcf19 Mon Sep 17 00:00:00 2001 From: kolaente Date: Tue, 30 May 2023 12:19:14 +0200 Subject: [PATCH] fix: increase default auto-save timeout to 5 seconds Related discussion: https://community.vikunja.io/t/task-description-constantly-saving-loosing-content/1350 --- src/components/input/editor.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/input/editor.vue b/src/components/input/editor.vue index 6affdf96e..f428eb5cf 100644 --- a/src/components/input/editor.vue +++ b/src/components/input/editor.vue @@ -211,7 +211,7 @@ function handleInput(val: string) { bubble(1000) } -function bubble(timeout = 500) { +function bubble(timeout = 5000) { if (changeTimeout.value !== null) { clearTimeout(changeTimeout.value) }