diff options
author | Hailey <me@haileyok.com> | 2024-07-08 10:06:00 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-08 18:06:00 +0100 |
commit | f8a59e10dd347e9187aa4414a0ece04eff3b9bc3 (patch) | |
tree | a689cdf9271a356113ace131aff0cd2bae68f7a5 /src/components/StarterPack | |
parent | d5503d17de4a3b8f2d769f7819baf47cf9b0a209 (diff) | |
download | voidsky-f8a59e10dd347e9187aa4414a0ece04eff3b9bc3.tar.zst |
Fix RTL text rendering for display names (#4747)
* header display name rtl support * highlighted post rtl * move `NON_BREAKING_SPACE` to an external constant * rtl support in search dropdown * profile card rtl * old profile card rtl * hover card * wizard list card * new chat * account card * chat header * clean up notifications * just force LTR on meta display name
Diffstat (limited to 'src/components/StarterPack')
-rw-r--r-- | src/components/StarterPack/Wizard/WizardListCard.tsx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/components/StarterPack/Wizard/WizardListCard.tsx b/src/components/StarterPack/Wizard/WizardListCard.tsx index aa1b2cf9b..55cf0f02b 100644 --- a/src/components/StarterPack/Wizard/WizardListCard.tsx +++ b/src/components/StarterPack/Wizard/WizardListCard.tsx @@ -78,7 +78,13 @@ function WizardListCard({ /> <View style={[a.flex_1, a.gap_2xs]}> <Text - style={[a.flex_1, a.font_bold, a.text_md, a.leading_tight]} + style={[ + a.flex_1, + a.font_bold, + a.text_md, + a.leading_tight, + a.self_start, + ]} numberOfLines={1}> {displayName} </Text> |