|
@@ -26,14 +26,21 @@ const Comment = props => {
|
26
|
26
|
</div>
|
27
|
27
|
</div>
|
28
|
28
|
<div
|
29
|
|
- className={classnames(`${props.customClass}__messagelist__item__createhour`, 'timeline__body__messagelist__item__createhour')}>
|
30
|
|
- {props.createdAt}
|
|
29
|
+ className={classnames(`${props.customClass}__messagelist__item__authorandhour`, 'timeline__body__messagelist__item__authorandhour')}>
|
|
30
|
+ <div className='mr-5'>
|
|
31
|
+ {props.createdAt}
|
|
32
|
+ </div>
|
|
33
|
+ {props.author}
|
31
|
34
|
</div>
|
32
|
35
|
<div
|
33
|
36
|
className={classnames(`${props.customClass}__messagelist__item__content`, 'timeline__body__messagelist__item__content')}
|
34
|
37
|
style={props.fromMe ? styleSent : styleReceived}
|
35
|
|
- dangerouslySetInnerHTML={{__html: props.text}}
|
36
|
|
- />
|
|
38
|
+
|
|
39
|
+ >
|
|
40
|
+ <div className='timeline__body__messagelist__item__content__text'>
|
|
41
|
+ {props.text}
|
|
42
|
+ </div>
|
|
43
|
+ </div>
|
37
|
44
|
</li>
|
38
|
45
|
)
|
39
|
46
|
}
|