From afc910c42ff966bcfc62f17ce5a4b7a9e5b690a7 Mon Sep 17 00:00:00 2001 From: Diego Rey Mendez Date: Thu, 7 Feb 2019 12:31:56 -0300 Subject: [PATCH] Adds placeholder coloring support for mobile's rich text component. (#13738) * Adds placeholder support for mobile's rich text component. * Removes an unnecessary line of code. --- packages/editor/src/components/rich-text/index.native.js | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/editor/src/components/rich-text/index.native.js b/packages/editor/src/components/rich-text/index.native.js index 8a7ce63178eaf..c52f31cbc96ed 100644 --- a/packages/editor/src/components/rich-text/index.native.js +++ b/packages/editor/src/components/rich-text/index.native.js @@ -379,6 +379,7 @@ export class RichText extends Component { } text={ { text: html, eventCount: this.lastEventCount } } placeholder={ this.props.placeholder } + placeholderTextColor={ this.props.placeholderTextColor || 'lightgrey' } onChange={ this.onChange } onFocus={ this.props.onFocus } onBlur={ this.props.onBlur }