We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32916e1 commit 85d1d11Copy full SHA for 85d1d11
app/routes/project-version.js
@@ -62,7 +62,8 @@ export default class ProjectVersionRoute extends Route {
62
let transitionVersion = this.projectService.getUrlVersion();
63
if (
64
moduleParams?.module === 'ember-data-overview' &&
65
- semverCompare(transitionVersion, '4.7') < 0
+ semverCompare(transitionVersion, '4.7') < 0 &&
66
+ transitionVersion !== 'release' // infinite redirects happen without this line
67
) {
68
return this.router.transitionTo('project-version.index');
69
}
0 commit comments