From 127f014b72ec79e728db7f7c1d4b5bfbcfdc03f0 Mon Sep 17 00:00:00 2001 From: Edwin Betancourt Date: Tue, 10 Aug 2021 19:39:16 -0400 Subject: [PATCH] fix: Documentation tag view not fixed. (#1040) --- src/router/index.js | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/router/index.js b/src/router/index.js index f3f19f46..dc3867bb 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -92,13 +92,21 @@ export const constantRoutes = [ path: '/documentation', component: Layout, redirect: '/documentation/index', - meta: { title: 'documentation', icon: 'documentation', affix: true, breadcrumb: false }, + meta: { + title: 'documentation', + icon: 'documentation', + breadcrumb: false + }, children: [ { path: 'index', component: () => import('@/views/documentation/index'), name: 'Documentation', - meta: { title: language.t('documentation.releaseNotes'), icon: 'documentation', affix: true, isIndex: true } + meta: { + title: language.t('documentation.releaseNotes'), + icon: 'documentation', + isIndex: true + } } ] },