Fix account description folding

This commit is contained in:
xmflsct 2022-12-05 18:56:38 +01:00
parent 51489e8e26
commit db6ef36278
3 changed files with 13 additions and 3 deletions

View File

@ -1 +1,3 @@
Enjoy using tooot
Enjoy toooting! This version includes following improvements and fixes:
- Fix toot attribution of favourites etc.
- Fix switching language

View File

@ -1 +1,3 @@
tooot使用愉快
toooting愉快此版本包括以下改进和修复
- 修复嘟文收藏等显示
- 修复不能切换语言

View File

@ -23,7 +23,13 @@ const AccountInformationNote = React.memo(
return (
<View style={styles.note}>
<ParseHTML content={account.note!} size={'M'} emojis={account.emojis} selectable />
<ParseHTML
content={account.note!}
size={'M'}
emojis={account.emojis}
selectable
numberOfLines={999}
/>
</View>
)
},