Skip to content

Commit 2e5c3e2

Browse files
authored
fix whats new not showing latest changes (#2639)
1 parent 3844854 commit 2e5c3e2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/routes/whats-new.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export default class WhatsNewRoute extends TabRoute {
4545
let ref = version.indexOf('alpha') === -1 ? `v${version}` : 'main';
4646
let url = `https://raw.githubusercontent.com/emberjs/ember-inspector/${encodeURIComponent(
4747
ref,
48-
)}/CHANGELOG.md`;
48+
)}-ember-inspector/CHANGELOG.md`;
4949

5050
return fetch(url)
5151
.then(checkStatus)

tests/acceptance/whats-new-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { setupTestAdapter } from '../test-adapter';
77
function urlFor(ref) {
88
return `https://raw.githubusercontent.com/emberjs/ember-inspector/${encodeURIComponent(
99
ref,
10-
)}/CHANGELOG.md`;
10+
)}-ember-inspector/CHANGELOG.md`;
1111
}
1212

1313
function generateContent(main = false) {

0 commit comments

Comments
 (0)