Merge remote-tracking branch 'origin/develop' into fix-input
Former-commit-id: ea09dcb1a6
This commit is contained in:
commit
a035991b3f
|
@ -14,7 +14,7 @@
|
|||
[view st/chat-icon-container
|
||||
[chat-icon-view-chat-list chat-id group-chat name color online]]
|
||||
[view st/item-container
|
||||
[view st/name-view
|
||||
#_[view st/name-view
|
||||
[text {:style st/name-text} (truncate-str name 20)]
|
||||
(when group-chat
|
||||
[icon :group st/group-icon])
|
||||
|
@ -26,7 +26,10 @@
|
|||
[text {:style st/last-message-text
|
||||
:numberOfLines 2}
|
||||
(when last-message
|
||||
(:content last-message))]]
|
||||
(let [content (:content last-message)]
|
||||
(if (string? content)
|
||||
content
|
||||
(:content content))))]]
|
||||
[view
|
||||
(when last-message
|
||||
[view st/status-container
|
||||
|
|
Loading…
Reference in New Issue