diff options
Diffstat (limited to 'src/components/WhoCanReply.tsx')
-rw-r--r-- | src/components/WhoCanReply.tsx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/components/WhoCanReply.tsx b/src/components/WhoCanReply.tsx index 34ac3fe5b..7d74a50c6 100644 --- a/src/components/WhoCanReply.tsx +++ b/src/components/WhoCanReply.tsx @@ -258,6 +258,19 @@ function Rule({ if (rule.type === 'mention') { return <Trans>mentioned users</Trans> } + if (rule.type === 'followers') { + return ( + <Trans> + users following{' '} + <InlineLinkText + label={`@${post.author.handle}`} + to={makeProfileLink(post.author)} + style={[a.text_sm, a.leading_snug]}> + @{post.author.handle} + </InlineLinkText> + </Trans> + ) + } if (rule.type === 'following') { return ( <Trans> |