We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6ef5fc commit 8824eb4Copy full SHA for 8824eb4
src/components/text/index.js
@@ -90,7 +90,7 @@ export default class Text extends PureBaseComponent {
90
return _.map(textParts, (text, index) => {
91
const shouldHighlight = _.lowerCase(text) === _.lowerCase(highlightString);
92
return (
93
- <Text key={index} style={shouldHighlight && [this.styles.highlight, highlightStyle]}>
+ <Text key={index} color={null} style={shouldHighlight && [this.styles.highlight, highlightStyle]}>
94
{text}
95
</Text>
96
);
0 commit comments