Fix crash on wrong disabled prop
This commit is contained in:
parent
5d0896739d
commit
a077dcbf3d
|
@ -243,7 +243,7 @@ const Reply = React.memo(
|
|||
}
|
||||
]}
|
||||
background={Touchable.Ripple(themes[theme].bannerBackground)}
|
||||
disabled={loading || attachment.message_link}>
|
||||
disabled={loading || !!attachment.message_link}>
|
||||
<View style={styles.attachmentContainer}>
|
||||
<Title attachment={attachment} timeFormat={timeFormat} theme={theme} />
|
||||
<Description attachment={attachment} getCustomEmoji={getCustomEmoji} theme={theme} />
|
||||
|
|
Loading…
Reference in New Issue