mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-07-28 22:59:02 +03:00
Optionally show tracked object paths in debug view (#19025)
This commit is contained in:
committed by
Blake Blackshear
parent
3609b41217
commit
22478df4d6
@@ -158,6 +158,16 @@ function DebugSettings({ handleSetOption, options }: DebugSettingsProps) {
|
||||
/>
|
||||
<Label htmlFor="regions">{t("debug.regions")}</Label>
|
||||
</div>
|
||||
<div className="flex items-center space-x-2">
|
||||
<Switch
|
||||
id="paths"
|
||||
checked={options["paths"]}
|
||||
onCheckedChange={(isChecked) => {
|
||||
handleSetOption("paths", isChecked);
|
||||
}}
|
||||
/>
|
||||
<Label htmlFor="paths">{t("debug.paths")}</Label>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user