Release 0.6.5 (#1400)
This release: - Adds Components from the Community - Changes the state management to Zustand which simplifies many parts of Langflow's frontend - Migrates many components to CustomComponent to eventually put all components in the same framework - Fixes migration problems
This commit is contained in:
commit
d2bfd300a6
2 changed files with 3 additions and 3 deletions
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "langflow"
|
||||
version = "0.6.4"
|
||||
version = "0.6.5"
|
||||
description = "A Python package with a built-in web application"
|
||||
authors = ["Logspace <contact@logspace.ai>"]
|
||||
maintainers = [
|
||||
|
|
|
|||
|
|
@ -284,7 +284,7 @@ export default function GenericNode({
|
|||
title={
|
||||
data.node?.output_types &&
|
||||
data.node.output_types.length > 0
|
||||
? data.node.output_types.join("|")
|
||||
? data.node.output_types.join(" | ")
|
||||
: data.type
|
||||
}
|
||||
tooltipTitle={data.node?.base_classes.join("\n")}
|
||||
|
|
@ -515,7 +515,7 @@ export default function GenericNode({
|
|||
}
|
||||
title={
|
||||
data.node?.output_types && data.node.output_types.length > 0
|
||||
? data.node.output_types.join("|")
|
||||
? data.node.output_types.join(" | ")
|
||||
: data.type
|
||||
}
|
||||
tooltipTitle={data.node?.base_classes.join("\n")}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue