File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
22 "name" : " react-chat-elements" ,
3- "version" : " 12.0.1 " ,
3+ "version" : " 12.0.2 " ,
44 "description" : " Reactjs chat components" ,
55 "author" : " Avare Kodcu <abdurrahmaneker58@gmail.com>" ,
66 "main" : " dist/main.js" ,
Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ const MeetingLink: FC<IMeetingLinkMessageProps> = props => {
1111 < div className = 'rce-mtlink-title' > { props . text } </ div >
1212 </ div >
1313 < div className = 'rce-mtlink-btn' >
14- { props . actionButtons . map ( ( Item : MeetingLinkActionButtons ) => {
14+ { props ? .actionButtons ? .map ( ( Item : MeetingLinkActionButtons ) => {
1515 return (
16- < div className = 'rce-mtlink-btn-content' onClick = { ( ) => Item . onClickButton ( props . meetingID ) } >
16+ < div className = 'rce-mtlink-btn-content' onClick = { ( ) => Item . onClickButton ( props ? .meetingID ?? '' ) } >
1717 < Item . Component />
1818 </ div >
1919 )
You can’t perform that action at this time.
0 commit comments