Skip to content
Snippets Groups Projects
Unverified Commit a9707016 authored by kesselb's avatar kesselb Committed by GitHub
Browse files

Merge pull request #4772 from nextcloud/backport/4771/stable1.9

[stable1.9] Save drafts every 10s, not every 700ms
parents d5054f43 b06fa697
No related branches found
Tags v2.2.8
No related merge requests found
......@@ -348,7 +348,7 @@ export default {
attachmentsPromise: Promise.resolve(),
canSaveDraft: true,
savingDraft: undefined,
saveDraftDebounced: debounce(700, this.saveDraft),
saveDraftDebounced: debounce(10 * 1000, this.saveDraft),
state: STATES.EDITING,
errorText: undefined,
STATES,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment