fix(util): Remove extra slash (#9347)

This commit is contained in:
Jiralite
2023-04-08 22:51:58 +01:00
committed by GitHub
parent d66d113333
commit b618e215f2

View File

@@ -23,7 +23,7 @@ export function hasMethods(item: ApiItemContainerMixin) {
}
export function resolveItemURI(item: ApiItem): string {
return `/${item.displayName}:${item.kind}`;
return `${item.displayName}:${item.kind}`;
}
function memberPredicate(item: ApiItem): item is ApiMethod | ApiMethodSignature | ApiProperty | ApiPropertySignature {