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

Commit 62f9a1e

Browse files
committed
Fix issue where thread panel did not update correctly
1 parent a701296 commit 62f9a1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/structures/ThreadPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ const ThreadPanel: React.FC<IProps> = ({ roomId, onClose, permalinkCreator }) =>
305305
<Measured sensor={card.current} onMeasurement={setNarrow} />
306306
{timelineSet ? (
307307
<TimelinePanel
308-
key={timelineSet.getFilter()?.filterId ?? roomId + ":" + filterOption}
308+
key={filterOption + ':' + (timelineSet.getFilter()?.filterId ?? roomId)}
309309
ref={timelinePanel}
310310
showReadReceipts={false} // No RR support in thread's list
311311
manageReadReceipts={false} // No RR support in thread's list

0 commit comments

Comments
 (0)