Skip to content

Commit

Permalink
Merge pull request #57 from tgxn/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
tgxn authored Oct 18, 2023
2 parents 0543037 + 8ecd775 commit a6177cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/components/Display.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ export const FediverseChipLink = ({ href, size = "md", ...props }) => {
<Chip
component={Link}
href={href}
target="_blank"
size={size}
variant="outlined"
onClick={(e) => e.stopPropagation()}
Expand Down
4 changes: 2 additions & 2 deletions src/components/ListItem/Comment.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ const CommentContentDetail = ({ report }) => {

// link across instances
// split ap_id
const apId = report.post.ap_id.split("/")[2];
const fediversePostLink = report.post.ap_id;
const apId = report.comment.ap_id.split("/")[2];
const fediversePostLink = report.comment.ap_id;

return (
<Box>
Expand Down

0 comments on commit a6177cf

Please sign in to comment.