mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-17 14:07:49 +00:00
feat: add chat color scheming
This commit is contained in:
committed by
Zoltan Bettenbuk
parent
8be02f9ca1
commit
a35099f949
@@ -7,6 +7,8 @@ import { toArray } from 'react-emoji-render';
|
||||
import { translate } from '../../../base/i18n';
|
||||
import { Linkify } from '../../../base/react';
|
||||
|
||||
import { MESSAGE_TYPE_LOCAL } from '../../constants';
|
||||
|
||||
import AbstractChatMessage, {
|
||||
type Props
|
||||
} from '../AbstractChatMessage';
|
||||
@@ -47,7 +49,7 @@ class ChatMessage extends AbstractChatMessage<Props> {
|
||||
</div>
|
||||
{ message.privateMessage && this._renderPrivateNotice() }
|
||||
</div>
|
||||
{ message.privateMessage && message.messageType !== 'local'
|
||||
{ message.privateMessage && message.messageType !== MESSAGE_TYPE_LOCAL
|
||||
&& <PrivateMessageButton
|
||||
participantID = { message.id }
|
||||
reply = { true }
|
||||
|
||||
Reference in New Issue
Block a user