Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add labels to mod details dialog (#4839)

authored by

Eric Bailey and committed by
GitHub
1d827ceb 783fd351

+10 -3
+10 -3
src/components/moderation/ModerationDetailsDialog.tsx
··· 54 54 description = ( 55 55 <Trans> 56 56 This user is included in the{' '} 57 - <InlineLinkText to={listUriToHref(list.uri)} style={[a.text_sm]}> 57 + <InlineLinkText 58 + label={list.name} 59 + to={listUriToHref(list.uri)} 60 + style={[a.text_sm]}> 58 61 {list.name} 59 62 </InlineLinkText>{' '} 60 63 list which you have blocked. ··· 83 86 description = ( 84 87 <Trans> 85 88 This user is included in the{' '} 86 - <InlineLinkText to={listUriToHref(list.uri)} style={[a.text_sm]}> 89 + <InlineLinkText 90 + label={list.name} 91 + to={listUriToHref(list.uri)} 92 + style={[a.text_sm]}> 87 93 {list.name} 88 94 </InlineLinkText>{' '} 89 95 list which you have muted. ··· 127 133 <Trans> 128 134 This label was applied by{' '} 129 135 <InlineLinkText 136 + label={desc.source || _(msg`an unknown labeler`)} 130 137 to={makeProfileLink({did: modcause.label.src, handle: ''})} 131 138 onPress={() => control.close()} 132 139 style={a.text_md}> 133 - {desc.source} 140 + {desc.source || _(msg`an unknown labeler`)} 134 141 </InlineLinkText> 135 142 . 136 143 </Trans>