fix: update search flow - first tool search
This commit is contained in:
@@ -9,11 +9,13 @@
|
||||
|
||||
interface Props {
|
||||
onSelect: (toolId: string) => void;
|
||||
/** true — только инструменты, пригодные в шаг цепочки (слот добавления шага). */
|
||||
chainableOnly?: boolean;
|
||||
}
|
||||
|
||||
let { onSelect }: Props = $props();
|
||||
let { onSelect, chainableOnly = false }: Props = $props();
|
||||
|
||||
const candidates = TOOLS.filter(isChainable);
|
||||
const candidates = chainableOnly ? TOOLS.filter(isChainable) : TOOLS;
|
||||
|
||||
let query = $state('');
|
||||
let activeIndex = $state(0);
|
||||
|
||||
Reference in New Issue
Block a user