chore: toggle filter dropdown after select an option

Co-authored-by: Sanjay Sargam <sargamsanjaykumar@gmail.com>
This commit is contained in:
GleidsonDaniel 2024-01-19 13:17:23 -03:00
parent ec3cb3ac53
commit 0ec91bb5b4
1 changed files with 1 additions and 1 deletions

View File

@ -424,7 +424,7 @@ class ThreadMessagesView extends React.Component<IThreadMessagesViewProps, IThre
onFilterSelected = (filter: Filter) => {
const { messages, subscription } = this.state;
const displayingThreads = this.getFilteredThreads(messages, subscription, filter);
this.setState({ currentFilter: filter, displayingThreads });
this.setState({ currentFilter: filter, displayingThreads, showFilterDropdown: false });
};
toggleFollowThread = async (isFollowingThread: boolean, tmid: string) => {