Skip to content

Commit

Permalink
fix(dgeni): api list links include duplicate prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
griest024 committed Aug 8, 2024
1 parent 9e95dd3 commit bf0ab12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/dgeni/src/processors/generateApiList.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function getExportInfo(exportDoc) {
return {
id: exportDoc.id,
title: exportDoc.name,
path: `/docs/${exportDoc.path}`,
path: `/${exportDoc.path}`,
docType: getDocType(exportDoc),
docTypeShorthand: exportDoc.docType.charAt(0),
};
Expand Down

0 comments on commit bf0ab12

Please sign in to comment.