fix(cli): update condition in SearchBox component
This commit modifies a conditional statement in the SearchBox component to properly manage the selected index based on the length of search results. This ensures appropriate selection even when the result length is less than or equal to the selected index.
This commit is contained in:
parent
803659a06b
commit
0fea1a50e3
@ -32,7 +32,7 @@ export function SearchBox<T extends {key: string; displayName: string}>({
|
||||
).then((result) => {
|
||||
setSuggestions(result)
|
||||
setLoading(false)
|
||||
if (result.length >= selected) {
|
||||
if (result.length <= selected) {
|
||||
setSelected(result.length - 1)
|
||||
}
|
||||
})
|
||||
|
Loading…
x
Reference in New Issue
Block a user