From 258a8fc8fa36bb0492c9f7ecc10427b30e67615a Mon Sep 17 00:00:00 2001 From: Dev By Ray <6241164+devbyray@users.noreply.github.com> Date: Thu, 21 Mar 2024 16:17:05 +0100 Subject: [PATCH] Set empty string to value instead of null Co-authored-by: Sadegh Barati --- apps/www/src/content/docs/components/combobox.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/www/src/content/docs/components/combobox.md b/apps/www/src/content/docs/components/combobox.md index 324c56ca..55b07fd7 100644 --- a/apps/www/src/content/docs/components/combobox.md +++ b/apps/www/src/content/docs/components/combobox.md @@ -50,7 +50,7 @@ const frameworks = [ ] const open = ref(false) -const value = ref(null) +const value = ref('')