Skip to content

Commit 8884310

Browse files
committed
appease prettier
1 parent 71adbf0 commit 8884310

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Diff for: app/helpers/github-link.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@ export function githubLink([project, version, file, line], { isEdit = false }) {
1919
// 'https://github.com/emberjs/data/tree/v4.10.0/packages/packages/store/addon/-private/record-arrays/identifier-array.ts#L118'
2020
const fixedFile = file?.replace('../packages/', '../');
2121

22-
return `https://github.com/${
23-
githubMap[project]
24-
}/tree/v${version}${mainDir(project, version)}${fixedFile}#L${line}`;
22+
return `https://github.com/${githubMap[project]}/tree/v${version}${mainDir(
23+
project,
24+
version
25+
)}${fixedFile}#L${line}`;
2526
}
2627

2728
export default helper(githubLink);

0 commit comments

Comments
 (0)