[FIX] Applying same color to the time on replied messages (#4211)
This commit is contained in:
parent
d4bee9254d
commit
8178f7cf87
|
@ -100,7 +100,7 @@ const Title = React.memo(
|
|||
{attachment.author_name ? (
|
||||
<Text style={[styles.author, { color: themes[theme].auxiliaryTintColor }]}>{attachment.author_name}</Text>
|
||||
) : null}
|
||||
{time ? <Text style={[messageStyles.time, { color: themes[theme].auxiliaryTintColor }]}>{time}</Text> : null}
|
||||
{time ? <Text style={[messageStyles.time, { color: themes[theme].auxiliaryText }]}>{time}</Text> : null}
|
||||
{attachment.title ? <Text style={[styles.title, { color: themes[theme].bodyText }]}>{attachment.title}</Text> : null}
|
||||
</View>
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue