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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/modules/acquisitions.ts (-3 lines)
Lines 63-69 const { removeMessages } = mainStore; Link Here
63
router.beforeEach((to, from) => {
63
router.beforeEach((to, from) => {
64
    navigationStore.$patch({ current: to.matched, params: to.params || {} });
64
    navigationStore.$patch({ current: to.matched, params: to.params || {} });
65
    removeMessages(); // This will actually flag the messages as displayed already
65
    removeMessages(); // This will actually flag the messages as displayed already
66
    if (to.external || to.meta.self.parent.external) {
67
        window.location.href = to.path;
68
    }
69
});
66
});
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/routes/acquisitions.js (-2 lines)
Lines 10-16 import { $__ } from "../i18n"; Link Here
10
export const routes = [
10
export const routes = [
11
    {
11
    {
12
        path: "/cgi-bin/koha/acqui/acqui-home.pl",
12
        path: "/cgi-bin/koha/acqui/acqui-home.pl",
13
        external: true,
14
        is_default: true,
13
        is_default: true,
15
        is_base: true,
14
        is_base: true,
16
        title: $__("Acquisitions"),
15
        title: $__("Acquisitions"),
17
- 

Return to bug 38010