Skip to content

Commit ac87c80

Browse files
authored
Merge pull request #862 from ember-learn/jw-github-url-fix-for-ember-data
Bugfix - fix broken ember-data GitHub URLS
2 parents a47e182 + 4185932 commit ac87c80

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

app/helpers/github-link.js

+15-1
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,24 @@ export function githubLink([project, version, file, line], { isEdit = false }) {
88
version
99
)}${file}#L${line}`;
1010
}
11+
12+
// This 'packages' replacement can be removed if the following PR goes into a patch release of
13+
// Ember Data 4.12: https://github.com/emberjs/data/pull/8598/files
14+
//
15+
// If the file has packages already in the path, make sure we don't
16+
// add duplicate packages via the mainDir function.
17+
// Fixes an issue with ember data URLS having an incorrect
18+
// 'packages/packages' in the GitHub source URL
19+
// For example, without this fixedFile line, a `file` with value
20+
// '../packages/store/addon/-private/record-arrays/identifier-array.ts'
21+
// would become
22+
// 'https://github.com/emberjs/data/tree/v4.10.0/packages/packages/store/addon/-private/record-arrays/identifier-array.ts#L118'
23+
const fixedFile = file?.replace('../packages/', '../');
24+
1125
return `https://github.com/${githubMap[project]}/tree/v${version}${mainDir(
1226
project,
1327
version
14-
)}${file}#L${line}`;
28+
)}${fixedFile}#L${line}`;
1529
}
1630

1731
export default helper(githubLink);

0 commit comments

Comments
 (0)