FEATURE: Add user status to chat members list (#25831)

This change adds the user status next to the name within the chat channel members list.
This commit is contained in:
David Battersby
2024-02-27 12:17:15 +08:00
committed by GitHub
parent 1bcb521fbf
commit a423afbbb9
8 changed files with 52 additions and 5 deletions

View File

@ -28,7 +28,7 @@ module(
await render(hbs`<ChatUserDisplayName @user={{this.user}} />`);
assert.strictEqual(displayName(), "bob Bobcat");
assert.strictEqual(displayName(), "bob Bobcat");
});
}
);
@ -53,7 +53,7 @@ module(
await render(hbs`<ChatUserDisplayName @user={{this.user}} />`);
assert.strictEqual(displayName(), "Bobcat bob");
assert.strictEqual(displayName(), "Bobcat bob");
});
}
);