feat(componentDeployment): 添加组件部署列表中的自定义logo显示功能

master
钟良源 1 day ago
parent 1b1d4e620b
commit eed8b82963

@ -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>

Loading…
Cancel
Save