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) {
12
12
const { project, project_version : compactVersion } =
13
13
this . paramsFor ( 'project-version' ) ;
14
14
15
- let projectRecord = await this . store . findRecord ( 'project' , project ) ;
15
+ let projectRecord = await this . store . findRecord ( 'project' , project . toLowerCase ( ) ) ;
16
16
let projectVersion = getFullVersion (
17
17
compactVersion ,
18
18
project ,
19
19
projectRecord ,
20
20
this . metaStore
21
21
) ;
22
22
const klass = params [ 'namespace' ] ;
23
- return this . find ( 'namespace' , `${ project } -${ projectVersion } -${ klass } ` ) ;
23
+ return this . find ( 'namespace' , `${ project } -${ projectVersion } -${ klass } ` . toLowerCase ( ) ) ;
24
24
}
25
25
26
26
serialize ( model ) {
You can’t perform that action at this time.
0 commit comments