make fuzzy-search-input taller by default

merge-requests/3361/merge^2
Siddharth Singh 2025-03-31 18:17:23 +05:30
rodzic c87c17546d
commit 9bcc807e4c
Nie znaleziono w bazie danych klucza dla tego podpisu
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -188,7 +188,7 @@ function FuzzySearchInput<T extends Record<string, any> | string>({
<ul
id={listboxId}
role='listbox'
className='absolute z-10 mt-1 max-h-60 w-full overflow-y-auto rounded-md border border-gray-300 bg-white shadow-lg dark:border-gray-600 dark:bg-gray-800'
className='absolute z-10 mt-1 max-h-96 w-full overflow-y-auto rounded-md border border-gray-300 bg-white shadow-lg dark:border-gray-600 dark:bg-gray-800'
>
{suggestions.map((item, index) => {
const isActive = index === activeIndex;