diff options
Diffstat (limited to 'src/components/dialogs/PostInteractionSettingsDialog.tsx')
-rw-r--r-- | src/components/dialogs/PostInteractionSettingsDialog.tsx | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/components/dialogs/PostInteractionSettingsDialog.tsx b/src/components/dialogs/PostInteractionSettingsDialog.tsx index b443d59f2..e4bc77702 100644 --- a/src/components/dialogs/PostInteractionSettingsDialog.tsx +++ b/src/components/dialogs/PostInteractionSettingsDialog.tsx @@ -429,7 +429,7 @@ export function PostInteractionSettingsForm({ disabled={replySettingsDisabled} /> <Selectable - label={_(msg`Followed users`)} + label={_(msg`Users you follow`)} isSelected={ !!threadgateAllowUISettings.find( v => v.type === 'following', @@ -438,6 +438,16 @@ export function PostInteractionSettingsForm({ onPress={() => onPressAudience({type: 'following'})} disabled={replySettingsDisabled} /> + <Selectable + label={_(msg`Your followers`)} + isSelected={ + !!threadgateAllowUISettings.find( + v => v.type === 'followers', + ) + } + onPress={() => onPressAudience({type: 'followers'})} + disabled={replySettingsDisabled} + /> {lists && lists.length > 0 ? lists.map(list => ( <Selectable |