Merge remote-tracking branch 'upstream/master' into chat-old-messages-re-render
This commit is contained in:
commit
35a02339dc
@ -156,7 +156,7 @@ export default injectIntl(withTracker(({ intl }) => {
|
||||
const lastReadMessageTime = ChatService.lastReadMessageTime(chatID);
|
||||
|
||||
return {
|
||||
chatID: Session.get('idChatOpen'),
|
||||
chatID,
|
||||
chatName,
|
||||
title,
|
||||
messages,
|
||||
|
@ -145,7 +145,7 @@ const lastReadMessageTime = (receiverID) => {
|
||||
};
|
||||
|
||||
const sendGroupMessage = (message) => {
|
||||
const chatID = Session.get('idChatOpen');
|
||||
const chatID = Session.get('idChatOpen') || PUBLIC_CHAT_ID;
|
||||
const isPublicChat = chatID === PUBLIC_CHAT_ID;
|
||||
|
||||
let chatId = PUBLIC_GROUP_CHAT_ID;
|
||||
|
@ -51,8 +51,10 @@ class Tooltip extends Component {
|
||||
onHide: this.onHide,
|
||||
wait: Tooltip.wait,
|
||||
touchHold: true,
|
||||
size: 'small',
|
||||
distance: 1,
|
||||
size: 'regular',
|
||||
distance: 10,
|
||||
arrow: true,
|
||||
arrowType: 'sharp',
|
||||
};
|
||||
this.tooltip = Tippy(`#${this.tippySelectorId}`, options);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user