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.
isClosedConversation
1 parent a468e10 commit f92d446Copy full SHA for f92d446
index.ts
@@ -300,7 +300,7 @@ export const isOpenConversation = (): boolean => {
300
301
export const isClosedConversation = (): boolean => {
302
const status = getStateLabel();
303
- return status === 'Closed' || status === 'Closed as not planned';
+ return status === 'Closed' || status === 'Closed as not planned' || status === 'Merged';
304
};
305
306
export const isReleases = (url: URL | HTMLAnchorElement | Location = location): boolean => getRepo(url)?.path === 'releases';
0 commit comments