View | Details | Raw Unified | Return to bug 39320
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/routes/erm.js (-3 / +4 lines)
Lines 23-37 import { $__ } from "@koha-vue/i18n"; Link Here
23
export const routes = [
23
export const routes = [
24
    {
24
    {
25
        path: "/cgi-bin/koha/erm/erm.pl",
25
        path: "/cgi-bin/koha/erm/erm.pl",
26
        redirect: "/cgi-bin/koha/erm/home",
26
        is_default: true,
27
        is_default: true,
27
        is_base: true,
28
        is_base: true,
28
        title: $__("E-resource management"),
29
        title: $__("E-resource management"),
29
        children: [
30
        children: [
30
            {
31
            {
31
                path: "",
32
                path: "/cgi-bin/koha/erm/home",
32
                name: "Home",
33
                name: "Home",
33
                component: markRaw(Home),
34
                component: markRaw(Home),
34
                is_navigation_item: false,
35
                title: $__("Home"),
36
                icon: "fa fa-home",
35
            },
37
            },
36
            {
38
            {
37
                path: "/cgi-bin/koha/erm/agreements",
39
                path: "/cgi-bin/koha/erm/agreements",
38
- 

Return to bug 39320