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 8fe04d9 commit c9d04faCopy full SHA for c9d04fa
src/theme/MDXComponents/A.js
@@ -7,7 +7,10 @@ function hasProtocolPrefix(str) {
7
return str.startsWith("http://") || str.startsWith("https://");
8
}
9
export default function MDXA(props) {
10
- if (props?.href?.includes("https://github.com/databendlabs/databend/pull/")) {
+ if (
11
+ props?.href?.includes("https://github.com/databendlabs/databend/pull/") ||
12
+ props?.href?.includes("https://github.com/datafuselabs/databend/pull/")
13
+ ) {
14
return <Link {...props} />;
15
16
if (hasProtocolPrefix(props?.href)) {
0 commit comments