hide settings dropdown when fullscreen

This commit is contained in:
Josh Hawkins 2025-11-11 11:05:44 -06:00
parent 0b43c15602
commit 03174adb8b

View File

@ -1030,6 +1030,7 @@ function FrigateCameraFeatures({
disabled={!cameraEnabled || debug || isSnapshotLoading} disabled={!cameraEnabled || debug || isSnapshotLoading}
loading={isSnapshotLoading} loading={isSnapshotLoading}
/> />
{!fullscreen && (
<DropdownMenu modal={false}> <DropdownMenu modal={false}>
<DropdownMenuTrigger> <DropdownMenuTrigger>
<div <div
@ -1158,7 +1159,9 @@ function FrigateCameraFeatures({
{t("stream.audio.tips.title")} {t("stream.audio.tips.title")}
<div className="mt-2 flex items-center text-primary"> <div className="mt-2 flex items-center text-primary">
<Link <Link
to={getLocaleDocUrl("configuration/live")} to={getLocaleDocUrl(
"configuration/live",
)}
target="_blank" target="_blank"
rel="noopener noreferrer" rel="noopener noreferrer"
className="inline" className="inline"
@ -1318,6 +1321,7 @@ function FrigateCameraFeatures({
</div> </div>
</DropdownMenuContent> </DropdownMenuContent>
</DropdownMenu> </DropdownMenu>
)}
</> </>
); );
} }