Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremiejade committed Oct 9, 2024
1 parent 1db078d commit ce4e111
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
2 changes: 2 additions & 0 deletions pix-editor/app/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ export default class App extends Application {
modulePrefix = config.modulePrefix;
podModulePrefix = config.podModulePrefix;
Resolver = Resolver;
LOG_TRANSITIONS = true;
LOG_TRANSITIONS_INTERNAL = true;
}

loadInitializers(App, config.modulePrefix);
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,16 @@ export default class SingleRoute extends Route {
}

async afterModel(model) {
console.log('1');
super.afterModel(...arguments);
await model.localizedChallenges;
console.log('model', model);
console.log('2');

// await model.localizedChallenges;

console.log('3');
await model?.files;
console.log('4');
}

setupController(controller) {
Expand Down
1 change: 1 addition & 0 deletions pix-editor/config/environment.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ module.exports = function(environment) {
defaultValue: 4,
minValue: 1,
}),
LOG_VIEW_LOOKUPS: true,
},

fontawesome: {
Expand Down

0 comments on commit ce4e111

Please sign in to comment.