summaryrefslogtreecommitdiffstats
path: root/webapp
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2017-06-10 16:06:39 -0400
committerCorey Hulen <corey@hulen.com>2017-06-10 13:06:39 -0700
commitfc7f6ffd326a09946fee5b55425a716c0e0bc4bb (patch)
tree217d169062e4ad70a5a19c4fd34702c7a9777b7f /webapp
parent91008ea2a588d2962f74601480322475f3a1c7d1 (diff)
downloadchat-fc7f6ffd326a09946fee5b55425a716c0e0bc4bb.tar.gz
chat-fc7f6ffd326a09946fee5b55425a716c0e0bc4bb.tar.bz2
chat-fc7f6ffd326a09946fee5b55425a716c0e0bc4bb.zip
PLT-6735 Fixed unknown prop warning from SuggestionBox (#6618)
Diffstat (limited to 'webapp')
-rw-r--r--webapp/components/suggestion/suggestion_box.jsx1
1 files changed, 1 insertions, 0 deletions
diff --git a/webapp/components/suggestion/suggestion_box.jsx b/webapp/components/suggestion/suggestion_box.jsx
index a8ee25db9..93e8b2583 100644
--- a/webapp/components/suggestion/suggestion_box.jsx
+++ b/webapp/components/suggestion/suggestion_box.jsx
@@ -287,6 +287,7 @@ export default class SuggestionBox extends React.Component {
Reflect.deleteProperty(props, 'providers');
Reflect.deleteProperty(props, 'onChange'); // We use onInput instead of onChange on the actual input
Reflect.deleteProperty(props, 'onItemSelected');
+ Reflect.deleteProperty(props, 'completeOnTab');
const childProps = {
ref: 'textbox',