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 c369c56 commit ca180a3Copy full SHA for ca180a3
packages/mask/content-script/site-adaptors/twitter.com/injection/Calendar.tsx
@@ -6,7 +6,10 @@ import { querySelector } from '../utils/selector.js'
6
7
function sidebarSearchSelector() {
8
return querySelector<HTMLElement>(
9
- '[data-testid="sidebarColumn"] > div > div > div > div[tabindex="0"] > div > div > div:not(div[tabindex="0"]):empty',
+ [
10
+ '[data-testid="sidebarColumn"] > div > div > div > div[tabindex="0"] > div > div > div:not(div[tabindex="0"]):empty', // home page
11
+ '[data-testid="sidebarColumn"] > div > div > div > div[tabindex="0"] > div > div:not(div[tabindex="0"]):empty', // profile page
12
+ ].join(','),
13
)
14
}
15
0 commit comments