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

Fix clicking the background of the tag panel not clearing the filter #5152

Merged
merged 2 commits into from
Aug 27, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/structures/TagPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ const TagPanel = createReactClass({
);
}

return <div className={classes}>
return <div className={classes} onClick={this.onClearFilterClick}>
<div className="mx_TagPanel_clearButton_container">
{ clearButton }
</div>
turt2live marked this conversation as resolved.
Show resolved Hide resolved
Expand Down