* Don't return weighted name if it has the same number of results

* Remove link to incorrect format yolov9 models

* Fix command list from appearing when other inputs are focused

the description box in the tracked object details pane was causing the command input list to show when focused.

* clarify face docs

* Add note about python yolov9 export

* Check if hailort thread is still alive when timeout error is run into

* Reduce inference timeout

---------

Co-authored-by: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com>
This commit is contained in:
Nicolas Mowen
2025-05-27 09:25:34 -06:00
committed by GitHub
parent 63f9689b0e
commit cbdac9ece5
5 changed files with 36 additions and 8 deletions

View File

@@ -763,12 +763,18 @@ export default function InputWithTags({
{inputFocused ? (
<LuChevronUp
onClick={() => setInputFocused(false)}
onClick={() => {
setInputFocused(false);
inputRef.current?.blur();
}}
className="size-4 cursor-pointer text-secondary-foreground"
/>
) : (
<LuChevronDown
onClick={() => setInputFocused(true)}
onClick={() => {
setInputFocused(true);
inputRef.current?.focus();
}}
className="size-4 cursor-pointer text-secondary-foreground"
/>
)}
@@ -778,7 +784,9 @@ export default function InputWithTags({
<CommandList
className={cn(
"scrollbar-container border-t duration-200 animate-in fade-in",
inputFocused ? "visible" : "hidden",
inputFocused && inputRef.current?.matches(":focus")
? "visible"
: "hidden",
)}
>
{!currentFilterType && inputValue && (