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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/modules/islands.ts (-2 / +4 lines)
Lines 9-15 export const componentRegistry: Map<string, () => Promise<Component>> = new Map( Link Here
9
        [
9
        [
10
            "hello-islands",
10
            "hello-islands",
11
            async () => {
11
            async () => {
12
                const module = await import("../components/HelloIslands.vue");
12
                const module = await import(
13
                    /* webpackChunkName: "hello-islands" */
14
                    "../components/HelloIslands.vue"
15
                );
13
                return module.default;
16
                return module.default;
14
            },
17
            },
15
        ],
18
        ],
16
- 

Return to bug 37911