File tree 2 files changed +6
-8
lines changed
routes/project-version/classes
2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -29,13 +29,8 @@ export default class Application extends JSONAPIAdapter {
29
29
return false ;
30
30
}
31
31
32
- shouldBackgroundReloadRecord ( store , { modelName, id } ) {
33
- let key = `${ modelName } -${ id } ` ;
34
- let hasId = this . ids [ key ] ;
35
- if ( ! hasId ) {
36
- this . ids [ key ] = true ;
37
- }
38
- return ! hasId ;
32
+ shouldBackgroundReloadRecord ( ) {
33
+ return false ;
39
34
}
40
35
41
36
constructor ( ) {
Original file line number Diff line number Diff line change @@ -33,7 +33,10 @@ export default class ClassRoute extends Route.extend(ScrollTracker) {
33
33
this . metaStore
34
34
) ;
35
35
const klass = params [ 'class' ] ;
36
- return this . find ( 'class' , `${ project } -${ projectVersion } -${ klass } ` ) ;
36
+ return this . find (
37
+ 'class' ,
38
+ `${ project } -${ projectVersion } -${ klass } ` . toLowerCase ( )
39
+ ) ;
37
40
}
38
41
39
42
find ( typeName , param ) {
You can’t perform that action at this time.
0 commit comments