add default icon for non-user autocompletes
Этот коммит содержится в:
@@ -6,10 +6,16 @@ module.exports = React.createClass({
|
|||||||
this.props.handleClick(this.props.username);
|
this.props.handleClick(this.props.username);
|
||||||
},
|
},
|
||||||
render: function() {
|
render: function() {
|
||||||
|
var icon;
|
||||||
|
if (this.props.id != null) {
|
||||||
|
icon = <span><img className="mention-img" src={"/api/v1/users/" + this.props.id + "/image"}/></span>;
|
||||||
|
} else {
|
||||||
|
icon = <span><i className="mention-img fa fa-users fa-2x"></i></span>;
|
||||||
|
}
|
||||||
return (
|
return (
|
||||||
<div className="mentions-name" onClick={this.handleClick}>
|
<div className="mentions-name" onClick={this.handleClick}>
|
||||||
<img className="mention-img" src={"/api/v1/users/" + this.props.id + "/image"}/>
|
<div className="pull-left">{icon}</div>
|
||||||
<span>@{this.props.username}</span><span className="mention-fullname">{this.props.secondary_text}</span>
|
<div className="pull-left mention-align"><span>@{this.props.username}</span><span className="mention-fullname">{this.props.secondary_text}</span></div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -56,3 +56,8 @@
|
|||||||
.mention-link {
|
.mention-link {
|
||||||
color:$primary-color;
|
color:$primary-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mention-align {
|
||||||
|
position:relative;
|
||||||
|
top:5px;
|
||||||
|
}
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user