Merge pull request 'issue-组织列表显示的名称' (#58) from caishi/forgeplus-react:pre_develop_dev into pre_develop_dev

This commit is contained in:
jasder 2021-09-10 11:51:51 +08:00
commit 98ca09e64b
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ function TeamItem({item,history}){
<div onClick={()=>{history.push(`/${item.name}`)}} style={{cursor:"pointer"}}>
<div className="imgBox"><img alt="" src={getImageUrl(`/${item.avatar_url}`)}/></div>
<div style={{flex:'1'}}>
<span className="mb5 font-18 color-grey-3 task-hide">{item.name}</span>
<span className="mb5 font-18 color-grey-3 task-hide">{item.nickname}</span>
<div className="task-hide-2 teamdesc">
{item.description}
</div>