chore: toggle filter dropdown after select an option
Co-authored-by: Sanjay Sargam <sargamsanjaykumar@gmail.com>
This commit is contained in:
parent
ec3cb3ac53
commit
0ec91bb5b4
|
@ -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) => {
|
||||
|
|
Loading…
Reference in New Issue