|
|
|
|
@ -148,8 +148,12 @@ const CollapseList: React.FC<CollapseListProps> = ({ searchKeyword, runStatus, c
|
|
|
|
|
return (
|
|
|
|
|
<div className={styles['header-node']}>
|
|
|
|
|
<Space size={7} style={{ marginRight: 50 }}>
|
|
|
|
|
<img src="https://picsum.photos/200/300"
|
|
|
|
|
style={{ width: 50, height: 50, borderRadius: 6, overflow: 'hidden' }} />
|
|
|
|
|
{item.logoUrl ?
|
|
|
|
|
<img src={item.logoUrl}
|
|
|
|
|
style={{ width: 50, height: 50, borderRadius: 6, overflow: 'hidden' }} /> :
|
|
|
|
|
<img src="https://picsum.photos/200/300"
|
|
|
|
|
style={{ width: 50, height: 50, borderRadius: 6, overflow: 'hidden' }} />
|
|
|
|
|
}
|
|
|
|
|
<div>{item.name}</div>
|
|
|
|
|
</Space>
|
|
|
|
|
|
|
|
|
|
|