Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.

Commit d9d65da

Browse files
authored
fix(gui): wrong label for relative links in documentation (#800)
1 parent 85ebe91 commit d9d65da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api-editor/gui/src/features/packageData/selectionView/DocumentationText.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ const resolveRelativeLink = function (currentDeclaration: PythonDeclaration, lin
148148
return linkedDeclarationName;
149149
}
150150

151-
return `[${currentDeclaration.preferredQualifiedName()}](${sibling.id})`;
151+
return `[${sibling.preferredQualifiedName()}](${sibling.id})`;
152152
};
153153

154154
const resolveAbsoluteLink = function (

0 commit comments

Comments
 (0)