FEATURE: display last message on mobile (#25384)

Direct messages on mobile will now display the last message in the channels list.
This commit is contained in:
Joffrey JAFFEUX
2024-01-25 15:30:21 +01:00
committed by GitHub
parent 4d1ed4a62d
commit 7b173e883f
20 changed files with 568 additions and 329 deletions

View File

@ -24,13 +24,13 @@ module(
await render(hbs`<ChatChannelPreviewCard @channel={{this.channel}} />`);
assert.strictEqual(
query(".chat-channel-title__name").innerText,
query(".chat-channel-name__label").innerText,
this.channel.title,
"it shows the channel title"
);
assert.true(
exists(query(".chat-channel-title__category-badge")),
exists(query(".chat-channel-icon.--category-badge")),
"it shows the category hashtag badge"
);
});