I’m testing the chat on two instances and I noticed that somewhere between commit #416 and current (#445), the consecutive chat messages are no longer being indented. I tried to dig into the code but for some reason couldn’t figure out what happened.
On #416, it looks like this:
And now on #445 it looks like this:
It seems the meta-data / timestamp is no longer showing to the left of the chat, but above it, and I’m not sure what happened.
Seems as if lines 486 and 473 changes, which removed the flex-direction: row
from 486 and also this from 473:
.tc-messages-container .tc-message.user-info-hidden .tc-meta-data {
align-items: flex-start;
display: flex;
flex-shrink: 0;
justify-content: center;
padding-top: 0.3em;
width: var(--message-left-width);
}
But I could be wrong, still learning how to debug across git commits.