File tree Expand file tree Collapse file tree 2 files changed +6
-8
lines changed
routes/project-version/classes Expand file tree Collapse file tree 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 {
2929 return false ;
3030 }
3131
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 ;
3934 }
4035
4136 constructor ( ) {
Original file line number Diff line number Diff line change @@ -33,7 +33,10 @@ export default class ClassRoute extends Route.extend(ScrollTracker) {
3333 this . metaStore
3434 ) ;
3535 const klass = params [ 'class' ] ;
36- return this . find ( 'class' , `${ project } -${ projectVersion } -${ klass } ` ) ;
36+ return this . find (
37+ 'class' ,
38+ `${ project } -${ projectVersion } -${ klass } ` . toLowerCase ( )
39+ ) ;
3740 }
3841
3942 find ( typeName , param ) {
You can’t perform that action at this time.
0 commit comments