Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Fix: Threads button is highlighted when I create a new room (#10819)
Browse files Browse the repository at this point in the history
* fix thread button highlight logic

* lint
  • Loading branch information
Kerry authored May 8, 2023
1 parent 81a23ac commit 727c885
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/views/right_panel/RoomHeaderButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ export default class RoomHeaderButtons extends HeaderButtons<IProps> {
title={_t("Threads")}
onClick={this.onThreadsPanelClicked}
isHighlighted={this.isPhase(RoomHeaderButtons.THREAD_PHASES)}
isUnread={this.state.threadNotificationColor > 0}
isUnread={this.state.threadNotificationColor > NotificationColor.None}
>
<UnreadIndicator color={this.state.threadNotificationColor} />
</HeaderButton>,
Expand Down
2 changes: 2 additions & 0 deletions test/components/views/right_panel/RoomHeaderButtons-test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,10 @@ describe("RoomHeaderButtons-test.tsx", function () {

it("thread notification does change the thread button", () => {
const { container } = getComponent(room);
expect(getThreadButton(container)!.className.includes("mx_RightPanel_headerButton_unread")).toBeFalsy();

room.setThreadUnreadNotificationCount("$123", NotificationCountType.Total, 1);
expect(getThreadButton(container)!.className.includes("mx_RightPanel_headerButton_unread")).toBeTruthy();
expect(isIndicatorOfType(container, "gray")).toBe(true);

room.setThreadUnreadNotificationCount("$123", NotificationCountType.Highlight, 1);
Expand Down

0 comments on commit 727c885

Please sign in to comment.