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.
isMilestone
isConversationList
1 parent 59527fa commit 301d8a3Copy full SHA for 301d8a3
index.ts
@@ -103,7 +103,10 @@ collect.set('isIssue', [
103
'https://github.com/sindresorhus/refined-github/issues/146',
104
]);
105
106
-export const isConversationList = (url: URL | HTMLAnchorElement | Location = location): boolean => isGlobalConversationList(url) || isRepoConversationList(url);
+export const isConversationList = (url: URL | HTMLAnchorElement | Location = location): boolean =>
107
+ isGlobalConversationList(url) ||
108
+ isRepoConversationList(url) ||
109
+ isMilestone(url);
110
collect.set('isConversationList', combinedTestOnly);
111
112
export const isConversation = (url: URL | HTMLAnchorElement | Location = location): boolean => isIssue(url) || isPRConversation(url);
0 commit comments