Skip to content
Merged
Changes from all commits
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
3 changes: 2 additions & 1 deletion js/activity.js
Original file line number Diff line number Diff line change
Expand Up @@ -2787,7 +2787,8 @@ class Activity {
//do nothing when clicked on the menu
} else if (document.getElementsByTagName("tr")[2].contains(e.target)) {
//do nothing when clicked on the search row
} else if (e.target.id === "myCanvas") {
} else {
// this will hide the search bar if someone clicks on menu items
that.hideSearchWidget();
document.removeEventListener("mousedown", closeListener);
}
Expand Down