Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit bb6b428

Browse files
committed
webui: Fix broken link in discussion comments page
1 parent 49aff1b commit bb6b428

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webui/jsx/discussion-comments.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ function DiscussionComment({commentData, setStatusMessage, setStatusMessageColou
319319
return (
320320
<div className="panel panel-default">
321321
<div className="panel-heading">
322-
<a className="blackLink" href={"/" + commentData.creator}>{commentData.avatar_url !== "" ? <img style={{border: "1px solid #8c8c8c"}} src={commentData.avatar_url} height="30" width="30" /> : null}</a>&nbsp;
322+
<a className="blackLink" href={"/" + commentData.commenter}>{commentData.avatar_url !== "" ? <img style={{border: "1px solid #8c8c8c"}} src={commentData.avatar_url} height="30" width="30" /> : null}</a>&nbsp;
323323
<a className="blackLink" href={"/" + commentData.commenter}>{commentData.commenter}</a>&nbsp;
324324
<a name={"c" + commentData.com_id} href={"#c" + commentData.com_id} className="blackLink">commented</a>&nbsp;
325325
<span title={new Date(commentData.creation_date).toLocaleString()} className="text-info">{getTimePeriod(commentData.creation_date, true)}</span>

0 commit comments

Comments
 (0)