From 939040c3ccb89999b8bd2191b9a3032678ad8b57 Mon Sep 17 00:00:00 2001 From: Harrison Healey Date: Wed, 4 Jul 2018 09:38:14 -0400 Subject: [PATCH] Add setNativeProps to QuickTextInput (#1881) --- app/components/quick_text_input.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/components/quick_text_input.js b/app/components/quick_text_input.js index 94900ac9d..2cac479a0 100644 --- a/app/components/quick_text_input.js +++ b/app/components/quick_text_input.js @@ -77,6 +77,10 @@ export default class QuickTextInput extends React.PureComponent { this.storedValue = this.props.value; } + setNativeProps(nativeProps) { + this.input.setNativeProps(nativeProps); + } + isFocused() { return this.input.isFocused(); }