mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-08 17:44:16 +00:00
* Show parent comment for comment link. Fixes #1030 * Changing let to const.
This commit is contained in:
parent
0bd9a17009
commit
26de38a869
|
@ -42,6 +42,7 @@ import {
|
|||
colorList,
|
||||
commentTreeMaxDepth,
|
||||
futureDaysToUnixTime,
|
||||
getCommentParentId,
|
||||
isAdmin,
|
||||
isBanned,
|
||||
isMod,
|
||||
|
@ -1051,11 +1052,14 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
|
|||
? i18n.t("show_context")
|
||||
: i18n.t("link");
|
||||
|
||||
// The context button should show the parent comment by default
|
||||
const parentCommentId = getCommentParentId(cv.comment) ?? cv.comment.id;
|
||||
|
||||
return (
|
||||
<>
|
||||
<Link
|
||||
className={classnames}
|
||||
to={`/comment/${cv.comment.id}`}
|
||||
to={`/comment/${parentCommentId}`}
|
||||
title={title}
|
||||
>
|
||||
<Icon icon="link" classes="icon-inline" />
|
||||
|
|
Loading…
Reference in a new issue