diff options
Diffstat (limited to '')
-rw-r--r-- | source/features/bugs-tab.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/features/bugs-tab.tsx b/source/features/bugs-tab.tsx index f7e2e5c6..f59a2b40 100644 --- a/source/features/bugs-tab.tsx +++ b/source/features/bugs-tab.tsx @@ -11,7 +11,7 @@ import {getRepo} from '../github-helpers'; import SearchQuery from '../github-helpers/search-query'; import abbreviateNumber from '../helpers/abbreviate-number'; -const supportedLabels = /^(bug|confirmed-bug|type:bug|:\w+:bug)$/; +const supportedLabels = /^(bug|confirmed-bug|type:bug|kind:bug|:\w+:bug)$/; const getBugLabelCacheKey = (): string => 'bugs-label:' + getRepo()!.nameWithOwner; const getBugLabel = async (): Promise<string | undefined> => cache.get<string>(getBugLabelCacheKey()); const isBugLabel = (label: string): boolean => supportedLabels.test(label.replace(/\s/g, '')); |