We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89a564d commit b8d19f3Copy full SHA for b8d19f3
apify-docs-theme/src/theme/MDXComponents/A.js
@@ -8,7 +8,7 @@ export default function MDXA(props) {
8
const { siteConfig } = useDocusaurusContext();
9
10
if (props.href?.startsWith(siteConfig.url)) {
11
- props.target = '_self';
+ props = { ...props, target: '_self' };
12
}
13
14
// absolute links in README, e.g. in the SDK or API Client docs, need to be converted to local `to` links
0 commit comments