aboutsummaryrefslogtreecommitdiff
path: root/client/js/controllers/help_controller.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/js/controllers/help_controller.js')
-rw-r--r--client/js/controllers/help_controller.js4
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);
});
};

© 2015 - 2026 Jakob L. Kreuze