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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/holdshistory.tt (-2 / +1 lines)
Lines 331-337 Link Here
331
                                } else if (row.cancellation_date) {
331
                                } else if (row.cancellation_date) {
332
                                    let r = _("Cancelled");
332
                                    let r = _("Cancelled");
333
                                    if (row.cancellation_reason){
333
                                    if (row.cancellation_reason){
334
                                        r += " ( %s )".format(hold_cancellation_reasons[row.cancellation_reason]);
334
                                        r += " (%s)".format(hold_cancellation_reasons[row.cancellation_reason]);
335
                                    }
335
                                    }
336
                                    return r;
336
                                    return r;
337
                                } else if (row.status == 'W') {
337
                                } else if (row.status == 'W') {
338
- 

Return to bug 40530