File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
app/routes/project-version/namespaces Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -12,15 +12,15 @@ export default class NamespaceRoute extends ClassRoute.extend(ScrollTracker) {
1212 const { project, project_version : compactVersion } =
1313 this . paramsFor ( 'project-version' ) ;
1414
15- let projectRecord = await this . store . findRecord ( 'project' , project ) ;
15+ let projectRecord = await this . store . findRecord ( 'project' , project . toLowerCase ( ) ) ;
1616 let projectVersion = getFullVersion (
1717 compactVersion ,
1818 project ,
1919 projectRecord ,
2020 this . metaStore
2121 ) ;
2222 const klass = params [ 'namespace' ] ;
23- return this . find ( 'namespace' , `${ project } -${ projectVersion } -${ klass } ` ) ;
23+ return this . find ( 'namespace' , `${ project } -${ projectVersion } -${ klass } ` . toLowerCase ( ) ) ;
2424 }
2525
2626 serialize ( model ) {
You can’t perform that action at this time.
0 commit comments