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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/cities.tt (-2 / +5 lines)
Lines 241-247 Link Here
241
                    "targets": [0,1,2,3,4],
241
                    "targets": [0,1,2,3,4],
242
                    "render": function (data, type, row, meta) {
242
                    "render": function (data, type, row, meta) {
243
                        if ( type == 'display' ) {
243
                        if ( type == 'display' ) {
244
                            return data.escapeHtml();
244
                            if ( data != null ) {
245
                                return data.escapeHtml();
246
                            } else {
247
                                return "";
248
                            }
245
                        }
249
                        }
246
                        return data;
250
                        return data;
247
                    }
251
                    }
248
- 

Return to bug 36196