diff options
Diffstat (limited to 'client/js/controllers/help_controller.js')
| -rw-r--r-- | client/js/controllers/help_controller.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/js/controllers/help_controller.js b/client/js/controllers/help_controller.js index f7dcafa..4c42d0b 100644 --- a/client/js/controllers/help_controller.js +++ b/client/js/controllers/help_controller.js @@ -15,9 +15,9 @@ module.exports = router => { new HelpController(); }); router.enter('/help/:section', (ctx, next) => { - new HelpController(ctx.params.section); + new HelpController(ctx.parameters.section); }); router.enter('/help/:section/:subsection', (ctx, next) => { - new HelpController(ctx.params.section, ctx.params.subsection); + new HelpController(ctx.parameters.section, ctx.parameters.subsection); }); }; |