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 171bad5 commit 0ab7cccCopy full SHA for 0ab7ccc
app/helpers/github-link.js
@@ -7,8 +7,7 @@ export function githubLink([project, version, file, line], { isEdit = false }) {
7
8
// Check if the project is 'ember' and adjust the tag only if the major version is >= 6 to match the Git tags
9
const adjustedVersion =
10
- isEmberProject && majorVersion >= 6 ? `${version}-ember-source`
11
- : version;
+ isEmberProject && majorVersion >= 6 ? `v${version}-ember-source` : `v${version}`;
12
13
if (isEdit) {
14
return `https://github.com/${githubMap[project]}/edit/release${mainDir(
0 commit comments