mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-04-11 09:37:37 +03:00
fix scrolling
This commit is contained in:
parent
00e16391ae
commit
0d8fe881ed
@ -326,14 +326,14 @@ function AllExportsView({
|
|||||||
return (
|
return (
|
||||||
<div className="w-full overflow-hidden">
|
<div className="w-full overflow-hidden">
|
||||||
{filteredCases?.length || filteredExports.length ? (
|
{filteredCases?.length || filteredExports.length ? (
|
||||||
<div className="flex flex-col gap-4">
|
<div
|
||||||
|
ref={contentRef}
|
||||||
|
className="scrollbar-container flex size-full flex-col gap-4 overflow-y-auto"
|
||||||
|
>
|
||||||
{filteredCases.length > 0 && (
|
{filteredCases.length > 0 && (
|
||||||
<div className="space-y-2">
|
<div className="space-y-2">
|
||||||
<Heading as="h4">{t("headings.cases")}</Heading>
|
<Heading as="h4">{t("headings.cases")}</Heading>
|
||||||
<div
|
<div className="grid size-full gap-2 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4">
|
||||||
ref={contentRef}
|
|
||||||
className="scrollbar-container grid size-full gap-2 overflow-y-auto sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4"
|
|
||||||
>
|
|
||||||
{cases?.map((item) => (
|
{cases?.map((item) => (
|
||||||
<CaseCard
|
<CaseCard
|
||||||
key={item.name}
|
key={item.name}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user