From 1cf98434687f4f13173afbb64396e37658a02246 Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Sun, 4 May 2025 12:02:10 +0400 Subject: [PATCH] refac --- src/lib/components/common/RichTextInput.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); }