From b5928ebf2643d99d67da2d9c0a2a8f8065518439 Mon Sep 17 00:00:00 2001 From: Gauthier Roebroeck Date: Fri, 14 Feb 2025 10:14:18 +0800 Subject: [PATCH] fix(webui): add missing admin guard for history view --- komga-webui/src/router.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/komga-webui/src/router.ts b/komga-webui/src/router.ts index 264f0ef3e..c9ebf9010 100644 --- a/komga-webui/src/router.ts +++ b/komga-webui/src/router.ts @@ -152,6 +152,7 @@ const router = new Router({ { path: '/history', name: 'history', + beforeEnter: adminGuard, component: () => import(/* webpackChunkName: "history" */ './views/HistoryView.vue'), }, {