Skip to content

Commit

Permalink
Revert "fix(editor): start immediately in debounced updateEditorConte…
Browse files Browse the repository at this point in the history
…nt function"

This reverts commit ab651d8.

Fixes: #1194

Signed-off-by: Jonas <jonas@freesources.org>
  • Loading branch information
mejo- committed May 14, 2024
1 parent 7e26f13 commit 1a1b0a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mixins/editorMixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export default {
updateEditorContent: debounce(function(markdown) {
this.editorContent = markdown
this.reader?.setContent(this.editorContent)
}, 200, { immediate: true }),
}, 200),

focusEditor() {
this.editor?.focus()
Expand Down

0 comments on commit 1a1b0a7

Please sign in to comment.