Feat: Correctly display the knowledge base icon of the recall operator node.
This commit is contained in:
parent
3a7322f5b2
commit
82aaac71b5
1 changed files with 2 additions and 2 deletions
|
|
@ -55,8 +55,8 @@ function InnerRetrievalNode({
|
|||
<div className="flex items-center gap-1.5">
|
||||
<RAGFlowAvatar
|
||||
className="size-6 rounded-lg"
|
||||
avatar={id}
|
||||
name={item?.name || (label as string) || 'CN'}
|
||||
avatar={item?.avatar}
|
||||
name={item ? item?.name : id}
|
||||
/>
|
||||
|
||||
<div className={'truncate flex-1'}>{label || item?.name}</div>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue