Tracked object details pane bugfix (#15736)

* restore save button in tracked object details pane

* conditionally show save button
This commit is contained in:
Josh Hawkins 2024-12-30 08:23:25 -06:00 committed by GitHub
parent 322b847356
commit a1ce9aacf2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -505,7 +505,6 @@ function ObjectDetailsTab({
<div className="flex w-full flex-row justify-end gap-2">
{config?.cameras[search.camera].genai.enabled && search.end_time && (
<>
<div className="flex items-start">
<Button
className="rounded-r-none border-r-0"
@ -543,7 +542,9 @@ function ObjectDetailsTab({
</DropdownMenu>
)}
</div>
)}
{(config?.cameras[search.camera].genai.enabled && search.end_time) ||
(!config?.cameras[search.camera].genai.enabled && (
<Button
variant="select"
aria-label="Save"
@ -551,8 +552,7 @@ function ObjectDetailsTab({
>
Save
</Button>
</>
)}
))}
</div>
</div>
</div>