mirror of
https://github.com/langgenius/dify.git
synced 2026-05-05 09:58:04 +08:00
feat: support node type filter
This commit is contained in:
@ -34,7 +34,7 @@ const Node: FC<NodeProps<VariableAssignerNodeType>> = (props) => {
|
||||
<>
|
||||
<div className='space-y-0.5'>
|
||||
{variables.map((item, index) => {
|
||||
const node = getNodeInfoById(item[0])
|
||||
const node = getNodeInfoById([], item[0]) // TODO: can not get all nodes
|
||||
const varName = item[item.length - 1]
|
||||
return (
|
||||
<div key={index} className='relative flex items-center h-6 bg-gray-100 rounded-md px-1 text-xs font-normal text-gray-700' >
|
||||
|
||||
Reference in New Issue
Block a user