File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ export default class IgcChatMessageComponent extends LitElement {
175175 const isSent = this . message . sender === this . _state . currentUserId ;
176176 const hasText = this . message . text . trim ( ) ;
177177 const hasAttachments = ! isEmpty ( this . message . attachments ?? [ ] ) ;
178- const isTyping = this . _state . _isTyping ;
178+ const isTyping = this . _state . options ?. isTyping ;
179179 const isLastMessage = this . message === this . _state . messages . at ( - 1 ) ;
180180 const resourceStrings = this . _state . resourceStrings ! ;
181181
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ export class ChatState {
4646 */
4747 private _acceptedTypesCache : ChatAcceptedFileTypes | null = null ;
4848
49- public _isTyping = false ;
49+ private _isTyping = false ;
5050 private _lastTyped = Date . now ( ) ;
5151
5252 public resourceStrings = IgcChatResourceStringEN ;
You can’t perform that action at this time.
0 commit comments