From 814af08c534ec2fb9d6138b29cb5f565f7fb056d Mon Sep 17 00:00:00 2001 From: Boyang Date: Sun, 28 Oct 2018 12:37:50 +0800 Subject: [PATCH] Fixed 'menu.form.stepform.stepform' not found in locale error (#2684) This was caused by extra name in router.config.js. '/form/step-form' is a pure redirect route and shouldn't have name, like other redirect routes --- config/router.config.js | 1 - 1 file changed, 1 deletion(-) diff --git a/config/router.config.js b/config/router.config.js index bef1be38..656027d2 100644 --- a/config/router.config.js +++ b/config/router.config.js @@ -60,7 +60,6 @@ export default [ routes: [ { path: '/form/step-form', - name: 'stepform', redirect: '/form/step-form/info', }, { -- GitLab