We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c34280 commit b0bea28Copy full SHA for b0bea28
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 ? `${version}-ember-source` : version;
12
13
if (isEdit) {
14
return `https://github.com/${githubMap[project]}/edit/release${mainDir(
0 commit comments