We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a98020c commit 6c34280Copy full SHA for 6c34280
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
11
- ? `${version}-ember-source`
+ isEmberProject && majorVersion >= 6 ? `${version}-ember-source`
12
: version;
13
14
if (isEdit) {
0 commit comments