forked from Github/frigate
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:
@@ -226,9 +226,11 @@ export default function LivePlayer({
|
||||
className,
|
||||
)}
|
||||
onClick={onClick}
|
||||
onAuxClick={() =>
|
||||
window.open(`${baseUrl}#${cameraConfig.name}`, "_blank")?.focus()
|
||||
}
|
||||
onAuxClick={(e) => {
|
||||
if (e.button === 1) {
|
||||
window.open(`${baseUrl}#${cameraConfig.name}`, "_blank")?.focus();
|
||||
}
|
||||
}}
|
||||
>
|
||||
{((showStillWithoutActivity && !liveReady) || liveReady) && (
|
||||
<>
|
||||
|
||||
@@ -177,9 +177,11 @@ export default function PreviewThumbnailPlayer({
|
||||
onMouseOver={isMobile ? undefined : () => setIsHovered(true)}
|
||||
onMouseLeave={isMobile ? undefined : () => setIsHovered(false)}
|
||||
onClick={handleOnClick}
|
||||
onAuxClick={() =>
|
||||
window.open(`${baseUrl}review?id=${review.id}`, "_blank")?.focus()
|
||||
}
|
||||
onAuxClick={(e) => {
|
||||
if (e.button === 1) {
|
||||
window.open(`${baseUrl}review?id=${review.id}`, "_blank")?.focus();
|
||||
}
|
||||
}}
|
||||
{...swipeHandlers}
|
||||
>
|
||||
{playingBack && (
|
||||
|
||||
Reference in New Issue
Block a user