Timothy Jaeryang Baek 5 månader sedan
förälder
incheckning
1cf9843468
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      src/lib/components/common/RichTextInput.svelte

+ 1 - 1
src/lib/components/common/RichTextInput.svelte

@@ -374,7 +374,7 @@
 		}
 	});
 
-	$: if (value && editor) {
+	$: if (value !== null && editor) {
 		onValueChange();
 	}