mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
Restrict menu height to ensure it does not overflow (#5601)
This commit is contained in:
parent
c4ebafe777
commit
a5e561c81d
@ -16,6 +16,8 @@ export default function MultiSelect({ className, title, options, selection, onTo
|
|||||||
|
|
||||||
const isOptionSelected = (item) => { return selection == "all" || selection.split(',').indexOf(item) > -1; }
|
const isOptionSelected = (item) => { return selection == "all" || selection.split(',').indexOf(item) > -1; }
|
||||||
|
|
||||||
|
const menuHeight = Math.round(window.innerHeight * 0.55);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={`${className} p-2`} ref={popupRef}>
|
<div className={`${className} p-2`} ref={popupRef}>
|
||||||
<div
|
<div
|
||||||
@ -26,7 +28,7 @@ export default function MultiSelect({ className, title, options, selection, onTo
|
|||||||
<ArrowDropdown className="w-6" />
|
<ArrowDropdown className="w-6" />
|
||||||
</div>
|
</div>
|
||||||
{state.showMenu ? (
|
{state.showMenu ? (
|
||||||
<Menu relativeTo={popupRef} onDismiss={() => setState({ showMenu: false })}>
|
<Menu className={`max-h-[${menuHeight}px] overflow-scroll`} relativeTo={popupRef} onDismiss={() => setState({ showMenu: false })}>
|
||||||
<div className="flex flex-wrap justify-between items-center">
|
<div className="flex flex-wrap justify-between items-center">
|
||||||
<Heading className="p-4 justify-center" size="md">{title}</Heading>
|
<Heading className="p-4 justify-center" size="md">{title}</Heading>
|
||||||
<Button tabindex="false" className="mx-4" onClick={() => onShowAll() }>
|
<Button tabindex="false" className="mx-4" onClick={() => onShowAll() }>
|
||||||
|
Loading…
Reference in New Issue
Block a user