Skip to content

Commit

Permalink
Fix collapsing
Browse files Browse the repository at this point in the history
  • Loading branch information
TravisSpomer committed Dec 19, 2024
1 parent a9bbfcf commit 39d2cc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/components/Editor.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
}
const throttledSaveDraft = throttle(AutoSaveInterval, saveDraft)
const throttledUpdateValue = throttle(UpdateValueInterval, () => value = editor.getHTML())
const throttledUpdateValue = throttle(UpdateValueInterval, () => value = getHtml())
$:
{
Expand Down

0 comments on commit 39d2cc3

Please sign in to comment.