From 50748cc032ab63e8f0286da7fb0d9d559fefa06c Mon Sep 17 00:00:00 2001 From: okbel Date: Wed, 21 Feb 2018 10:45:54 -0300 Subject: [PATCH] Updating onChange --- .../src/tabs/stream/components/TextAreaDefault.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/coral-embed-stream/src/tabs/stream/components/TextAreaDefault.js b/client/coral-embed-stream/src/tabs/stream/components/TextAreaDefault.js index cccff8db8..0893e6d95 100644 --- a/client/coral-embed-stream/src/tabs/stream/components/TextAreaDefault.js +++ b/client/coral-embed-stream/src/tabs/stream/components/TextAreaDefault.js @@ -14,7 +14,7 @@ const TextAreaComponent = ({ value={value} placeholder={placeholder} id={id} - onChange={onChange} + onChange={e => onChange(e.target.value)} rows={rows} disabled={disabled} />