mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
Prettified Code!
This commit is contained in:
parent
f23a1202cc
commit
8c5f7be05c
1 changed files with 3 additions and 3 deletions
|
@ -48,9 +48,9 @@ export default class ChatMessageView extends Component {
|
|||
return null;
|
||||
}
|
||||
const formattedTimestamp = `Sent at ${formatTimestamp(timestamp)}`;
|
||||
const userMetadata = createdAt ? `${displayName} first joined ${formatTimestamp(
|
||||
createdAt
|
||||
)}` : null;
|
||||
const userMetadata = createdAt
|
||||
? `${displayName} first joined ${formatTimestamp(createdAt)}`
|
||||
: null;
|
||||
|
||||
const isSystemMessage = message.type === SOCKET_MESSAGE_TYPES.SYSTEM;
|
||||
|
||||
|
|
Loading…
Reference in a new issue