Update apps/www/src/content/docs/components/combobox.md

Co-authored-by: Sadegh Barati <sadeghbaratiwork@gmail.com>
This commit is contained in:
Dev By Ray 2024-03-21 16:17:34 +01:00 committed by GitHub
parent 258a8fc8fa
commit 8a0efbd1c7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -62,7 +62,7 @@ const value = ref('')
:aria-expanded="open" :aria-expanded="open"
class="w-[200px] justify-between" class="w-[200px] justify-between"
> >
{{ value ? frameworks.find((framework) => framework.value === value?.value)?.label : 'Select framework...' }} {{ value ? frameworks.find((framework) => framework.value === value)?.label : 'Select framework...' }}
<ChevronsUpDown class="ml-2 h-4 w-4 shrink-0 opacity-50" /> <ChevronsUpDown class="ml-2 h-4 w-4 shrink-0 opacity-50" />
</Button> </Button>