Always display usernames in compact chat

Compact chat looks wrong when a user sends multiple messages, and the name only appears before the first message.

How it looks right now:

How I think it should look like:

1 Like

Thanks for the suggestion, I’ll forward this for discussion.

2 Likes

Here’s a CSS snippet to always show the sender’s name:

.ts-chat-room-event-compact .ts-chat-room-event-compact .ts-chat-sender {
    display: inline-block !important;
}

Hope it helps someone