We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f5685d commit 88f9af5Copy full SHA for 88f9af5
1 file changed
js/activity.js
@@ -3414,7 +3414,10 @@ class Activity {
3414
document.getElementById("ui-id-1").contains(e.target))
3415
) {
3416
//do nothing when clicked on the menu
3417
- } else if (document.getElementsByTagName("tr")[2].contains(e.target)) {
+ } else if (
3418
+ document.querySelector("#palette tbody tr") &&
3419
+ document.querySelector("#palette tbody tr").contains(e.target)
3420
+ ) {
3421
//do nothing when clicked on the search row
3422
} else {
3423
// this will hide the search bar if someone clicks on menu items
0 commit comments