Revert "FIX: correctly respects full name settings in channel title (#22566)" (#22569)

This reverts commit aa9c7dc924ac59a7bb9a45e9ab96f56defbb2037.
This commit is contained in:
Joffrey JAFFEUX
2023-07-12 18:46:19 +02:00
committed by GitHub
parent aa9c7dc924
commit 10f6395545
2 changed files with 3 additions and 21 deletions

View File

@ -80,24 +80,6 @@ module("Discourse Chat | Component | chat-channel-title", function (hooks) {
);
});
test("direct message channel - one user showing full name", async function (assert) {
this.siteSettings.prioritize_username_in_ux = true;
this.user = fabricators.user({
username: "joffrey",
name: "Joffrey Baratheon",
});
this.channel = fabricators.directMessageChannel({
chatable: fabricators.directMessage({ users: [this.user] }),
});
await render(hbs`<ChatChannelTitle @channel={{this.channel}} />`);
assert
.dom(".chat-user-display-name__username.-first")
.hasText(this.user.username);
assert.dom(".chat-user-display-name__name").hasText(this.user.name);
});
test("direct message channel - multiple users", async function (assert) {
const channel = fabricators.directMessageChannel();