mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-12-01 16:51:13 +00:00
Changing let to const.
This commit is contained in:
parent
5f4f87f3ea
commit
c60a629f27
1 changed files with 1 additions and 1 deletions
|
@ -1053,7 +1053,7 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
|
||||||
: i18n.t("link");
|
: i18n.t("link");
|
||||||
|
|
||||||
// The context button should show the parent comment by default
|
// The context button should show the parent comment by default
|
||||||
let parentCommentId = getCommentParentId(cv.comment) ?? cv.comment.id;
|
const parentCommentId = getCommentParentId(cv.comment) ?? cv.comment.id;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
|
|
Loading…
Reference in a new issue