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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Link.vue (-2 / +1 lines)
Lines 42-48 export default { Link Here
42
                window.location.href = this.formatUrl(redirectParams);
42
                window.location.href = this.formatUrl(redirectParams);
43
            if (typeof redirectParams === "object") {
43
            if (typeof redirectParams === "object") {
44
                const url = this.handleQuery(redirectParams);
44
                const url = this.handleQuery(redirectParams);
45
                window.open(this.formatUrl(url), "_blank");
45
                window.location.href = this.formatUrl(url);
46
            }
46
            }
47
        },
47
        },
48
        formatUrl(url) {
48
        formatUrl(url) {
49
- 

Return to bug 40067