Created
July 8, 2024 17:46
-
-
Save isaacs/5e168ac0ab5df0fead2dffa98c719eb9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 0536a49691e13aa2c858770a447657332c07a3c9 Mon Sep 17 00:00:00 2001 | |
From: isaacs <[email protected]> | |
Date: Mon, 8 Jul 2024 10:32:06 -0700 | |
Subject: [PATCH] fix: correct 'Edit this page' links | |
--- | |
apps/site/util/gitHubUtils.ts | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
diff --git a/apps/site/util/gitHubUtils.ts b/apps/site/util/gitHubUtils.ts | |
index 3abf386b..813eaada 100644 | |
--- a/apps/site/util/gitHubUtils.ts | |
+++ b/apps/site/util/gitHubUtils.ts | |
@@ -10,7 +10,7 @@ export const createGitHubSlugger = () => { | |
}; | |
export const getGitHubBlobUrl = (filename: string) => | |
- `https://github.com/nodejs/nodejs.org/blob/main/pages/en/${filename}`; | |
+ `https://github.com/nodejs/nodejs.org/blob/main/apps/site/pages/en/${filename}`; | |
export const getGitHubApiDocsUrl = (ref: string) => | |
`https://api.github.com/repos/nodejs/node/contents/doc/api?ref=${ref}`; | |
-- | |
2.39.3 (Apple Git-146) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment