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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/Main.vue (-1 / +1 lines)
Lines 29-35 Link Here
29
                                    </li>
29
                                    </li>
30
                                    <li>
30
                                    <li>
31
                                        <router-link
31
                                        <router-link
32
                                            to="/cgi-bin/koha/erm/licenses"
32
                                            :to="{ name: 'LicensesList' }"
33
                                        >
33
                                        >
34
                                            <i class="fa fa-gavel"></i>
34
                                            <i class="fa fa-gavel"></i>
35
                                            {{ $__("Licenses") }}</router-link
35
                                            {{ $__("Licenses") }}</router-link
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/routes/erm.js (-2 / +1 lines)
Lines 125-131 export const routes = [ Link Here
125
    },
125
    },
126
    {
126
    {
127
        path: "/cgi-bin/koha/erm/erm.pl",
127
        path: "/cgi-bin/koha/erm/erm.pl",
128
        name: "Home"
128
        name: "Home",
129
        component: Home,
129
        component: Home,
130
        meta: {
130
        meta: {
131
            breadcrumb: () => [breadcrumbs.home, breadcrumbs.erm_home],
131
            breadcrumb: () => [breadcrumbs.home, breadcrumbs.erm_home],
132
- 

Return to bug 32932