mirror of
https://github.com/tooot-app/app
synced 2024-12-21 23:24:29 +01:00
Fix #749
This commit is contained in:
parent
6e5b06f3a7
commit
8b3ca21ac9
@ -1 +1,3 @@
|
||||
Enjoy toooting! This version includes following improvements and fixes:
|
||||
- Supports mute duration
|
||||
- Long press to copy toot
|
@ -1,2 +1,4 @@
|
||||
tooot-ing愉快!此版本包括以下改进和修复:
|
||||
- 新增neodb.social演出卡片
|
||||
- 支持选择隐藏用户时限
|
||||
- 长按复制嘟文
|
@ -36,6 +36,7 @@ const TimelineContent: React.FC<Props> = ({ notificationOwnToot = false, setSpoi
|
||||
adaptiveSize
|
||||
numberOfLines={999}
|
||||
color={suppressSpoiler ? colors.disabled : undefined}
|
||||
selectable
|
||||
/>
|
||||
{inThread ? (
|
||||
<CustomText
|
||||
@ -62,6 +63,7 @@ const TimelineContent: React.FC<Props> = ({ notificationOwnToot = false, setSpoi
|
||||
}
|
||||
expandHint={t('shared.content.expandHint')}
|
||||
setSpoilerExpanded={setSpoilerExpanded}
|
||||
selectable
|
||||
/>
|
||||
</>
|
||||
) : (
|
||||
@ -70,6 +72,7 @@ const TimelineContent: React.FC<Props> = ({ notificationOwnToot = false, setSpoi
|
||||
size={highlighted ? 'L' : 'M'}
|
||||
adaptiveSize
|
||||
numberOfLines={highlighted || inThread ? 999 : notificationOwnToot ? 2 : undefined}
|
||||
selectable
|
||||
/>
|
||||
)}
|
||||
</View>
|
||||
|
Loading…
Reference in New Issue
Block a user