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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/KohaTable.vue (-2 / +6 lines)
Lines 137-143 export default { Link Here
137
                                            .map(v => v.trim())
137
                                            .map(v => v.trim())
138
                                            .filter(v => v);
138
                                            .filter(v => v);
139
                                        if (values.length > 1) {
139
                                        if (values.length > 1) {
140
                                            // Return as unordered list
140
                                            // For export, return newline-separated values
141
                                            // CSV/Excel export will properly quote cells containing newlines
142
                                            if (type === "export") {
143
                                                return values.join("\n");
144
                                            }
145
                                            // For display, return as unordered list
141
                                            return (
146
                                            return (
142
                                                '<ul class="additional-field-list">' +
147
                                                '<ul class="additional-field-list">' +
143
                                                values
148
                                                values
144
- 

Return to bug 41151