Skip to content

Commit b0bea28

Browse files
fix: lint
1 parent 6c34280 commit b0bea28

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

app/helpers/github-link.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ export function githubLink([project, version, file, line], { isEdit = false }) {
77

88
// Check if the project is 'ember' and adjust the tag only if the major version is >= 6 to match the Git tags
99
const adjustedVersion =
10-
isEmberProject && majorVersion >= 6 ? `${version}-ember-source`
11-
: version;
10+
isEmberProject && majorVersion >= 6 ? `${version}-ember-source` : version;
1211

1312
if (isEdit) {
1413
return `https://github.com/${githubMap[project]}/edit/release${mainDir(

0 commit comments

Comments
 (0)