mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-14 23:25:25 +03:00
small tweaks
This commit is contained in:
parent
764d80e1d9
commit
0f85c8575b
@ -9,7 +9,7 @@ export function shareOrCopy(url: string, title?: string) {
|
|||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
copy(url);
|
copy(url);
|
||||||
toast.success("Copied to clipboard.", {
|
toast.success("Copied URL to clipboard.", {
|
||||||
position: "top-center",
|
position: "top-center",
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@ -60,7 +60,7 @@ export default function ExploreView({ onSelectSearch }: ExploreViewProps) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="scrollbar-container mx-2 space-y-4 overflow-x-hidden">
|
<div className="mx-2 space-y-4">
|
||||||
{Object.entries(eventsByLabel).map(([label, filteredEvents]) => (
|
{Object.entries(eventsByLabel).map(([label, filteredEvents]) => (
|
||||||
<ThumbnailRow
|
<ThumbnailRow
|
||||||
key={label}
|
key={label}
|
||||||
|
|||||||
@ -215,7 +215,7 @@ export default function SearchView({
|
|||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
{!uniqueResults && !isLoading && (
|
{!uniqueResults && !isLoading && (
|
||||||
<div className="flex size-full flex-col">
|
<div className="scrollbar-container flex size-full flex-col overflow-y-auto">
|
||||||
<ExploreView onSelectSearch={onSelectSearch} />
|
<ExploreView onSelectSearch={onSelectSearch} />
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user