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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/stores/erm.js (-6 / +3 lines)
Lines 149-161 export const useReportsStore = defineStore("reports", { Link Here
149
            return (
149
            return (
150
                "<li>" +
150
                "<li>" +
151
                message.format(job.report_type) +
151
                message.format(job.report_type) +
152
                ', <a href="/cgi-bin/koha/admin/background_jobs.pl?op=view&id=' +
152
                '. <a href="/cgi-bin/koha/admin/background_jobs.pl?op=view&id=' +
153
                job.job_id +
153
                job.job_id +
154
                '" target="_blank">' +
154
                '" target="_blank">' +
155
                __("click here") +
155
                __("Check job progress") +
156
                "</a> " +
156
                ".</a></li>"
157
                __("to check its progress.") +
158
                "</li>"
159
            );
157
            );
160
        },
158
        },
161
    },
159
    },
162
- 

Return to bug 35392