Optionally show tracked object paths in debug view (#19025)

This commit is contained in:
Josh Hawkins
2025-08-16 10:20:33 -05:00
committed by Blake Blackshear
parent 3609b41217
commit 22478df4d6
6 changed files with 62 additions and 0 deletions
@@ -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>
);
}