diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Post.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Post.js b/src/Post.js index f3a5e02..db46106 100644 --- a/src/Post.js +++ b/src/Post.js @@ -78,7 +78,10 @@ const Post = ({ index, post, locked, threadId, currentBoard }) => { src={`https://bienvenidoainternet.org/static/ico/${rndAvatar}.gif`} /> <Comment.Content> - <Comment.Author as="a"> + <Comment.Author + as="a" + href={post.mail !== "" ? `mailto:${post.email}` : null} + > #{currentBoard.board_type === 0 ? post.id : index + 1}{" "} <span className={post.email === "sage" ? "username sage" : "username"} |