mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-10 07:25:48 +01:00
🚑 Hotfix media popover
This commit is contained in:
@@ -172,7 +172,10 @@ export function Search() {
|
||||
return (
|
||||
<Box style={{ width: '100%', maxWidth: 400 }}>
|
||||
<Popover
|
||||
opened={OverseerrResults && OverseerrResults.length > 0 && opened && searchQuery.length > 3}
|
||||
opened={
|
||||
(OverseerrResults && OverseerrResults.length > 0 && opened && searchQuery.length > 3) ??
|
||||
false
|
||||
}
|
||||
position="bottom"
|
||||
withinPortal
|
||||
shadow="md"
|
||||
|
||||
@@ -18,7 +18,7 @@ export const MediaList = ({ medias }: MediaListProps) => {
|
||||
|
||||
return (
|
||||
<ScrollArea
|
||||
style={{ height: '80vh', maxWidth: '90vw' }}
|
||||
style={{ maxHeight: 450, minHeight: 210, maxWidth: '90vw' }}
|
||||
offsetScrollbars
|
||||
pt={5}
|
||||
className={classes.scrollArea}
|
||||
|
||||
Reference in New Issue
Block a user