From ba3cb4204b75ece90803bfbde3b1bbb064f8e6fd Mon Sep 17 00:00:00 2001 From: "marc.sirisak" Date: Wed, 9 Oct 2024 19:32:23 +0200 Subject: [PATCH 1/3] fix: room header thread button click regression --- .../matrix-react-sdk/src/components/views/rooms/RoomHeader.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linked-dependencies/matrix-react-sdk/src/components/views/rooms/RoomHeader.tsx b/linked-dependencies/matrix-react-sdk/src/components/views/rooms/RoomHeader.tsx index 63c72d6f32..be14a0409d 100644 --- a/linked-dependencies/matrix-react-sdk/src/components/views/rooms/RoomHeader.tsx +++ b/linked-dependencies/matrix-react-sdk/src/components/views/rooms/RoomHeader.tsx @@ -398,7 +398,7 @@ export default function RoomHeader({ indicator={notificationLevelToIndicator(threadNotifications)} onClick={(evt) => { evt.stopPropagation(); - RightPanelStore.instance.showOrHidePanel(RightPanelPhases.ThreadPanel); + RightPanelStore.instance.showOrHidePhase(RightPanelPhases.ThreadPanel); PosthogTrackers.trackInteraction("WebRoomHeaderButtonsThreadsButton", evt); }} aria-label={_t("common|threads")} From 1871c044b1bf88ad4970ccd39eaede9e11d78285 Mon Sep 17 00:00:00 2001 From: "marc.sirisak" Date: Wed, 9 Oct 2024 19:42:37 +0200 Subject: [PATCH 2/3] fix: translation remove unused in tchap room header --- modules/tchap-translations/tchap_translations_removed.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/tchap-translations/tchap_translations_removed.json b/modules/tchap-translations/tchap_translations_removed.json index 03144a63cd..3e1f3c45cf 100644 --- a/modules/tchap-translations/tchap_translations_removed.json +++ b/modules/tchap-translations/tchap_translations_removed.json @@ -56,5 +56,6 @@ "common|private", "room_list|add_space_label", "spaces|error_no_permission_add_space", - "auth|continue_with_sso" + "auth|continue_with_sso", + "room|header_avatar_open_settings_label" ] From 03276ce2d3fcbbe3ec7d85c8341094cb0b721afc Mon Sep 17 00:00:00 2001 From: "marc.sirisak" Date: Wed, 9 Oct 2024 19:32:48 +0200 Subject: [PATCH 3/3] bump 4.9.2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 742535abca..8a786c0160 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "element-web", "productName": "Tchap", - "version": "4.9.1", + "version": "4.9.2", "version-element-web": "1.11.80", "description": "A feature-rich client for Matrix.org", "author": "DINUM",