From 2a02b5498b30828b783025230028e44b9b2a398f Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Thu, 17 Dec 2020 17:04:23 +1100 Subject: [PATCH] enable back spellcheck for textarea message --- ts/components/session/conversation/SessionCompositionBox.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/components/session/conversation/SessionCompositionBox.tsx b/ts/components/session/conversation/SessionCompositionBox.tsx index a4fcf51f4..14977391f 100644 --- a/ts/components/session/conversation/SessionCompositionBox.tsx +++ b/ts/components/session/conversation/SessionCompositionBox.tsx @@ -372,7 +372,7 @@ export class SessionCompositionBox extends React.Component { onKeyDown={this.onKeyDown} onKeyUp={this.onKeyUp} placeholder={messagePlaceHolder} - spellCheck={false} + spellCheck={true} inputRef={this.textarea} disabled={!typingEnabled} maxLength={Constants.CONVERSATION.MAX_MESSAGE_BODY_LENGTH}