mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-14 23:25:25 +03:00
don't hide iOS video mute button
This commit is contained in:
parent
774db48701
commit
fa94d20677
@ -350,7 +350,7 @@ function ObjectDetailsTab({
|
|||||||
<div className="flex flex-col gap-1.5">
|
<div className="flex flex-col gap-1.5">
|
||||||
<div className="text-sm text-primary/40">Description</div>
|
<div className="text-sm text-primary/40">Description</div>
|
||||||
<Textarea
|
<Textarea
|
||||||
className="md:h-64"
|
className="h-64"
|
||||||
placeholder="Description of the tracked object"
|
placeholder="Description of the tracked object"
|
||||||
value={desc}
|
value={desc}
|
||||||
onChange={(e) => setDesc(e.target.value)}
|
onChange={(e) => setDesc(e.target.value)}
|
||||||
@ -447,8 +447,13 @@ function VideoTab({ search, config }: VideoTabProps) {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{!isLoading && (
|
{!isLoading && reviewItem && (
|
||||||
<div className="absolute right-2 top-2 flex items-center">
|
<div
|
||||||
|
className={cn(
|
||||||
|
"absolute top-2 flex items-center",
|
||||||
|
isIOS ? "right-8" : "right-2",
|
||||||
|
)}
|
||||||
|
>
|
||||||
<Tooltip>
|
<Tooltip>
|
||||||
<TooltipTrigger>
|
<TooltipTrigger>
|
||||||
<Chip
|
<Chip
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user