mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-25 16:26:51 +08:00
show avatar dialog instead of default (#4033)
show avatar dialog instead of default - [x] New Feature (non-breaking change which adds functionality) --------- Co-authored-by: Kevin Hu <kevinhu.sh@gmail.com>
This commit is contained in:
@ -89,9 +89,12 @@ const KnowledgeList = () => {
|
||||
className={styles.knowledgeCardContainer}
|
||||
>
|
||||
{nextList?.length > 0 ? (
|
||||
nextList.map((item: any) => {
|
||||
nextList.map((item: any, index: number) => {
|
||||
return (
|
||||
<KnowledgeCard item={item} key={item.name}></KnowledgeCard>
|
||||
<KnowledgeCard
|
||||
item={item}
|
||||
key={`${item?.name}-${index}`}
|
||||
></KnowledgeCard>
|
||||
);
|
||||
})
|
||||
) : (
|
||||
|
||||
Reference in New Issue
Block a user