diff --git a/src/lib/components/common/RichTextInput.svelte b/src/lib/components/common/RichTextInput.svelte index 2b506670a..fa35add42 100644 --- a/src/lib/components/common/RichTextInput.svelte +++ b/src/lib/components/common/RichTextInput.svelte @@ -374,7 +374,7 @@ } }); - $: if (value && editor) { + $: if (value !== null && editor) { onValueChange(); }