From 90095e2fdaf0af514d25240a73867227e4313414 Mon Sep 17 00:00:00 2001 From: Pedro Amorim Date: Sat, 1 Apr 2023 17:38:33 +0000 Subject: [PATCH] Bug 33381: Change router link active class match rule This makes it so that the route erm/agreements/1 will also match the router-link /erm/agreements instead of the previous exact match rule, thus adding the 'current' class --- koha-tmpl/intranet-tmpl/prog/js/vue/modules/erm.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/modules/erm.ts b/koha-tmpl/intranet-tmpl/prog/js/vue/modules/erm.ts index e4290931dfd..a7eaa1413f5 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/vue/modules/erm.ts +++ b/koha-tmpl/intranet-tmpl/prog/js/vue/modules/erm.ts @@ -21,7 +21,7 @@ import { routes } from "../routes/erm"; const router = createRouter({ history: createWebHistory(), - linkExactActiveClass: "current", + linkActiveClass: "current", routes, }); -- 2.30.2