merge fix

This commit is contained in:
cristhianzl 2024-02-16 17:06:03 -03:00
commit 92e966e466
2 changed files with 4 additions and 3 deletions

BIN
img/new_langflow_demo.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 MiB

View file

@ -136,11 +136,12 @@ export function groupByFamily(
((!excludeTypes.has(template.type) &&
baseClassesSet.has(template.type)) ||
(template.input_types &&
template.input_types.some((inputType) => {
baseClassesSet.has(inputType);
})))
template.input_types.some((inputType) =>
baseClassesSet.has(inputType)
)))
);
};
if (flow) {
// se existir o flow
for (const node of flow) {