Skip to content

Commit 6c34280

Browse files
fix: lint
1 parent a98020c commit 6c34280

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
11-
? `${version}-ember-source`
10+
isEmberProject && majorVersion >= 6 ? `${version}-ember-source`
1211
: version;
1312

1413
if (isEdit) {

0 commit comments

Comments
 (0)