Skip to content

Commit f6da949

Browse files
Qjuhkodiakhq[bot]
andauthored
fix(website): link to enum members in search index (#10875)
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
1 parent f686c83 commit f6da949

File tree

1 file changed

+1
-1
lines changed
  • packages/api-extractor-utils/src

1 file changed

+1
-1
lines changed

packages/api-extractor-utils/src/parse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ export function generatePath(items: readonly ApiItem[], version: string) {
3636
switch (item.kind) {
3737
case ApiItemKind.Model:
3838
case ApiItemKind.EntryPoint:
39-
case ApiItemKind.EnumMember:
4039
break;
4140
case ApiItemKind.Package:
4241
path += `/${item.displayName}`;
@@ -55,6 +54,7 @@ export function generatePath(items: readonly ApiItem[], version: string) {
5554
case ApiItemKind.Property:
5655
case ApiItemKind.PropertySignature:
5756
case ApiItemKind.Event:
57+
case ApiItemKind.EnumMember:
5858
path += `#${item.displayName}`;
5959
break;
6060
default:

0 commit comments

Comments
 (0)