mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-20 13:54:36 +01:00
Fixes (#18379)
* 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:
@@ -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 && (
|
||||
|
||||
Reference in New Issue
Block a user