Miscellaneous fixes (0.17 beta) (#21826)
CI / AMD64 Build (push) Has been cancelled
CI / ARM Build (push) Has been cancelled
CI / Jetson Jetpack 6 (push) Has been cancelled
CI / AMD64 Extra Build (push) Has been cancelled
CI / ARM Extra Build (push) Has been cancelled
CI / Synaptics Build (push) Has been cancelled
CI / Assemble and push default build (push) Has been cancelled

* revert other changes

* fix verified icon overlay in debug view list

* Add classification object debug logs

* Formatting

---------

Co-authored-by: Nicolas Mowen <nickmowen213@gmail.com>
This commit is contained in:
Josh Hawkins
2026-01-29 12:42:06 -07:00
committed by GitHub
co-authored by Nicolas Mowen
parent 3b6814fbc9
commit b4520d9e2f
5 changed files with 425 additions and 10 deletions
+4 -4
View File
@@ -173,9 +173,9 @@ function getVerifiedIcon(
const simpleLabel = label.substring(0, label.lastIndexOf("-"));
return (
<div key={label} className="flex items-center">
<div key={label} className="relative flex items-center">
{getIconForLabel(simpleLabel, type, className)}
<FaCheckCircle className="absolute size-2 translate-x-[80%] translate-y-3/4" />
<FaCheckCircle className="absolute -bottom-0.5 -right-0.5 size-2" />
</div>
);
}
@@ -188,9 +188,9 @@ function getRecognizedPlateIcon(
const simpleLabel = label.substring(0, label.lastIndexOf("-"));
return (
<div key={label} className="flex items-center">
<div key={label} className="relative inline-flex items-center">
{getIconForLabel(simpleLabel, type, className)}
<LuScanBarcode className="absolute size-2.5 translate-x-[50%] translate-y-3/4" />
<LuScanBarcode className="absolute -bottom-0.5 -right-0.5 size-2" />
</div>
);
}
@@ -391,7 +391,7 @@ function ObjectList({ cameraConfig, objects }: ObjectListProps) {
);
return (
<div className="scrollbar-container flex w-full flex-col overflow-y-auto">
<div className="scrollbar-container relative flex w-full flex-col overflow-y-auto">
{objects && objects.length > 0 ? (
objects.map((obj: ObjectType) => {
return (