@@ -37,13 +37,13 @@ export default class IgcChatComponent extends EventEmitterMixin<
3737 ) ;
3838 }
3939
40- @property ( )
40+ @property ( { attribute : false } )
4141 public user : IgcUser | undefined ;
4242
43- @property ( { reflect : true } )
43+ @property ( { reflect : true , attribute : false } )
4444 public messages : IgcMessage [ ] = [ ] ;
4545
46- @property ( { reflect : true , attribute : 'typing-users' } )
46+ @property ( { reflect : true , attribute : false } )
4747 public typingUsers : IgcUser [ ] = [ ] ;
4848
4949 @property ( { type : Boolean , attribute : 'scroll-bottom' } )
@@ -183,14 +183,14 @@ export default class IgcChatComponent extends EventEmitterMixin<
183183 < igc-chat-message-list
184184 .messages =${ this . messages }
185185 .user =${ this . user }
186- .typing-users =${ this . typingUsers }
187- .scroll-bottom =${ this . scrollBottom }
188- .enable-reactions =${ this . enableReactions }
186+ .typingUsers =${ this . typingUsers }
187+ .scrollBottom =${ this . scrollBottom }
188+ .enableReactions =${ this . enableReactions }
189189 >
190190 </ igc-chat-message-list >
191191 < igc-chat-input
192- .enable-attachments =${ this . enableAttachments }
193- .enable-emoji-picker =${ this . enableEmojiPicker }
192+ .enableAttachments =${ this . enableAttachments }
193+ .enableEmojiPicker =${ this . enableEmojiPicker }
194194 @message-send=${ this . handleSendMessage }
195195 > </ igc-chat-input >
196196 </ div >
0 commit comments