diff --git a/web/chat/chat-thread-list-sidebar.react.js b/web/chat/chat-thread-list-sidebar.react.js --- a/web/chat/chat-thread-list-sidebar.react.js +++ b/web/chat/chat-thread-list-sidebar.react.js @@ -16,15 +16,24 @@ function ChatThreadListSidebar(props: Props): React.Node { const { sidebarInfo } = props; const { threadInfo, mostRecentNonLocalMessage } = sidebarInfo; - const threadID = threadInfo.id; + const { + currentUser: { unread }, + id: threadID, + } = threadInfo; const active = useThreadIsActive(threadID); + let unreadDot; + if (unread) { + unreadDot =
; + } + return (
+
{unreadDot}
div.dotContainer { + width: 16px; +} div.sidebarTitle.unread { color: var(--fg); }