mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-05-05 21:17:43 +03:00
handle right click
This commit is contained in:
parent
0cbdf7c1ec
commit
43388985d5
@ -620,6 +620,11 @@ function FaceAttemptGroup({
|
|||||||
: "outline-transparent duration-500",
|
: "outline-transparent duration-500",
|
||||||
)}
|
)}
|
||||||
onClick={(e) => handleClickEvent(e.metaKey)}
|
onClick={(e) => handleClickEvent(e.metaKey)}
|
||||||
|
onContextMenu={(e) => {
|
||||||
|
e.stopPropagation();
|
||||||
|
e.preventDefault();
|
||||||
|
handleClickEvent(true);
|
||||||
|
}}
|
||||||
>
|
>
|
||||||
<div className="flex flex-row justify-between">
|
<div className="flex flex-row justify-between">
|
||||||
<div className="capitalize">
|
<div className="capitalize">
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user