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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/edifactmsgs.tt (-2 / +6 lines)
Lines 130-136 Link Here
130
                                let errorsList = '<ul>';
130
                                let errorsList = '<ul>';
131
                                row.errors.forEach(error => {
131
                                row.errors.forEach(error => {
132
                                    if (error.details) {
132
                                    if (error.details) {
133
                                        errorsList += '<li>' + error.details + '</li>';
133
                                        errorsList += '<li>'
134
                                        errorsList += error.details
135
                                        if (error.section) {
136
                                            errorsList += '</br><pre>' + error.section + '</pre>';
137
                                        }
138
                                        errorsList += '</li>';
134
                                    }
139
                                    }
135
                                });
140
                                });
136
                                errorsList += '</ul>';
141
                                errorsList += '</ul>';
137
- 

Return to bug 38689