Regression: The Unordered and Ordered List text color to bodyText (#4717)
* Regression: The Unordered and Ordered List text color to bodyText * update storyshot
This commit is contained in:
parent
92ae597b76
commit
057ca8afac
File diff suppressed because one or more lines are too long
|
@ -17,7 +17,9 @@ const OrderedList = ({ value }: IOrderedListProps): React.ReactElement => {
|
|||
{value.map(item => (
|
||||
<View style={styles.row} key={item.number?.toString()}>
|
||||
<Text style={[styles.text, { color: colors.bodyText }]}>{item.number}. </Text>
|
||||
<Inline value={item.value} />
|
||||
<Text style={{ color: colors.bodyText }}>
|
||||
<Inline value={item.value} />
|
||||
</Text>
|
||||
</View>
|
||||
))}
|
||||
</View>
|
||||
|
|
|
@ -18,7 +18,9 @@ const UnorderedList = ({ value }: IUnorderedListProps) => {
|
|||
{value.map(item => (
|
||||
<View style={styles.row}>
|
||||
<Text style={[styles.text, { color: themes[theme].bodyText }]}>- </Text>
|
||||
<Inline value={item.value} />
|
||||
<Text style={{ color: themes[theme].bodyText }}>
|
||||
<Inline value={item.value} />
|
||||
</Text>
|
||||
</View>
|
||||
))}
|
||||
</View>
|
||||
|
|
Loading…
Reference in New Issue