Fix output type separator in GenericNode component
This commit is contained in:
parent
37a968efb0
commit
ee22000c52
1 changed files with 2 additions and 2 deletions
|
|
@ -292,7 +292,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")}
|
||||
|
|
@ -539,7 +539,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