UX: make channel name bold for unread threads (#30127)

Channels with unread threads should have a font weight of bold to match unread channels.
This commit is contained in:
David Battersby 2024-12-05 14:17:31 +04:00 committed by GitHub
parent b3c94839ed
commit 4e8a1487ca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -140,7 +140,10 @@ export default class ChatChannelRow extends Component {
}
get channelHasUnread() {
return this.args.channel.tracking.unreadCount > 0;
return (
this.args.channel.tracking.unreadCount > 0 ||
this.args.channel.unreadThreadsCount > 0
);
}
get shouldRenderLastMessage() {