mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-07-30 07:39:01 +03:00
Fix filter args (#13718)
* Fix filter args in events * Fix export arg * Don' t fail * Fix filter buttons * Fix right click * Formatting
This commit is contained in:
@@ -135,11 +135,13 @@ export function AnimatedEventCard({
|
||||
<div
|
||||
className="size-full cursor-pointer overflow-hidden rounded md:rounded-lg"
|
||||
onClick={onOpenReview}
|
||||
onAuxClick={() =>
|
||||
window
|
||||
.open(`${baseUrl}review?id=${event.id}`, "_blank")
|
||||
?.focus()
|
||||
}
|
||||
onAuxClick={(e) => {
|
||||
if (e.button === 1) {
|
||||
window
|
||||
.open(`${baseUrl}review?id=${event.id}`, "_blank")
|
||||
?.focus();
|
||||
}
|
||||
}}
|
||||
>
|
||||
{!alertVideos ? (
|
||||
<img
|
||||
|
||||
Reference in New Issue
Block a user