Fix vertical scrolling for table filter select (#9920)

This commit is contained in:
Oliver 2025-07-01 16:09:43 +10:00 committed by GitHub
parent 6a7d04d0e6
commit a38f1803a9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -145,6 +145,7 @@ function FilterElement({
data={valueOptions}
searchable={filterProps.type == 'choice'}
label={t`Value`}
withScrollArea={false}
placeholder={t`Select filter value`}
onChange={(value: string | null) => onValueChange(value)}
maxDropdownHeight={800}
@ -258,7 +259,7 @@ function FilterAddGroup({
placeholder={t`Select filter`}
label={t`Filter`}
onChange={(value: string | null) => setSelectedFilter(value)}
maxDropdownHeight={800}
maxDropdownHeight={400}
/>
{selectedFilter && filterProps && (
<FilterElement