Adding message to comment node actions.
This commit is contained in:
parent
7d3adda0cd
commit
58f673ab78
1 changed files with 10 additions and 0 deletions
10
ui/src/components/comment-node.tsx
vendored
10
ui/src/components/comment-node.tsx
vendored
|
@ -293,6 +293,16 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
|
||||||
</li>
|
</li>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
|
{!this.myComment && (
|
||||||
|
<li className="list-inline-item">
|
||||||
|
<Link
|
||||||
|
class="text-muted"
|
||||||
|
to={`/create_private_message?recipient_id=${node.comment.creator_id}`}
|
||||||
|
>
|
||||||
|
{i18n.t('message').toLowerCase()}
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
)}
|
||||||
<li className="list-inline-item">•</li>
|
<li className="list-inline-item">•</li>
|
||||||
<li className="list-inline-item">
|
<li className="list-inline-item">
|
||||||
<span
|
<span
|
||||||
|
|
Reference in a new issue