mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
Fix double scrollbar in dropdown
This commit is contained in:
parent
dacf13475a
commit
491716f4dd
1 changed files with 1 additions and 1 deletions
|
|
@ -65,7 +65,7 @@ export function WebsiteSelect({
|
||||||
renderValue={renderValue}
|
renderValue={renderValue}
|
||||||
listProps={{
|
listProps={{
|
||||||
renderEmptyState: () => <Empty message={formatMessage(messages.noResultsFound)} />,
|
renderEmptyState: () => <Empty message={formatMessage(messages.noResultsFound)} />,
|
||||||
style: { maxHeight: '400px' },
|
style: { maxHeight: 'calc(42vh - 65px)' },
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{({ id, name }: any) => <ListItem key={id}>{name}</ListItem>}
|
{({ id, name }: any) => <ListItem key={id}>{name}</ListItem>}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue