1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-04 16:31:13 +00:00

long name comment (#3537)

* long name comment

* reviewer dialog name
This commit is contained in:
Michael An
2019-05-28 17:53:51 +08:00
committed by Daniel Pan
parent 742a327e1c
commit e92bc848b2
9 changed files with 20 additions and 12 deletions

View File

@@ -442,10 +442,10 @@ class GroupView extends React.Component {
this.state.groupMembers.map(function(item, index) {
return (
<li key={index}>
<a href="#" className="sf-popover-item user-item">
<a href="#" className="sf-popover-item user-item d-flex">
<img src={item.avatar_url} alt="" className="group-member-avatar avatar"/>
<span className="txt-item ellipsis">
<span className="group-member-name">{item.name}</span>
<span className="txt-item ellipsis d-flex">
<span className="group-member-name ellipsis">{item.name}</span>
<span className="group-member-admin">{that.translateRole(item.role)}</span>
</span>
</a>