mirror of
https://github.com/tooot-app/app
synced 2025-04-06 06:31:08 +02:00
commit
80c6b1fe26
@ -72,9 +72,6 @@ const ParseEmojis = React.memo(
|
|||||||
})
|
})
|
||||||
if (emojiIndex === -1) {
|
if (emojiIndex === -1) {
|
||||||
return <Text key={emojiShortcode + i}>{emojiShortcode}</Text>
|
return <Text key={emojiShortcode + i}>{emojiShortcode}</Text>
|
||||||
} else {
|
|
||||||
if (i === 0) {
|
|
||||||
return <Text key={emojiShortcode + i}> </Text>
|
|
||||||
} else {
|
} else {
|
||||||
const uri = reduceMotionEnabled
|
const uri = reduceMotionEnabled
|
||||||
? emojis[emojiIndex].static_url
|
? emojis[emojiIndex].static_url
|
||||||
@ -91,7 +88,6 @@ const ParseEmojis = React.memo(
|
|||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
return <Text key={i}>{str}</Text>
|
return <Text key={i}>{str}</Text>
|
||||||
}
|
}
|
||||||
|
@ -152,6 +152,7 @@ const TimelinePoll: React.FC<Props> = ({
|
|||||||
</Text>
|
</Text>
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
|
if (poll.expires_at) {
|
||||||
return (
|
return (
|
||||||
<Text style={[styles.expiration, { color: theme.secondary }]}>
|
<Text style={[styles.expiration, { color: theme.secondary }]}>
|
||||||
<Trans
|
<Trans
|
||||||
@ -161,6 +162,7 @@ const TimelinePoll: React.FC<Props> = ({
|
|||||||
</Text>
|
</Text>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}, [mode, i18n.language, poll.expired, poll.expires_at])
|
}, [mode, i18n.language, poll.expired, poll.expires_at])
|
||||||
|
|
||||||
const isSelected = useCallback(
|
const isSelected = useCallback(
|
||||||
|
@ -28,6 +28,7 @@ const ComposeDrafts: React.FC<Props> = ({ accessibleRefDrafts }) => {
|
|||||||
if (!composeState.dirty && instanceDrafts?.length) {
|
if (!composeState.dirty && instanceDrafts?.length) {
|
||||||
return (
|
return (
|
||||||
<View
|
<View
|
||||||
|
accessible
|
||||||
ref={accessibleRefDrafts}
|
ref={accessibleRefDrafts}
|
||||||
style={styles.base}
|
style={styles.base}
|
||||||
children={
|
children={
|
||||||
|
Loading…
x
Reference in New Issue
Block a user