Skip to content

Commit

Permalink
fix(components): input - placeholderTextColor
Browse files Browse the repository at this point in the history
  • Loading branch information
artyorsh authored Jan 16, 2020
1 parent 07d0aed commit e10f6c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ui/input/input.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -338,10 +338,10 @@ export class InputComponent extends React.Component<InputProps> implements WebEv
style={[componentStyle.inputContainer, styles.inputContainer]}>
<TextInput
ref={this.textInputRef}
placeholderTextColor={componentStyle.placeholder.color}
{...restProps}
{...this.webEventResponder.eventHandlers}
style={[componentStyle.text, styles.text, webStyles.text, textStyle]}
placeholderTextColor={componentStyle.placeholder.color}
editable={!restProps.disabled}
onFocus={this.onTextFieldFocus}
onBlur={this.onTextFieldBlur}
Expand Down

0 comments on commit e10f6c7

Please sign in to comment.