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

(-)a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js (-6 / +10 lines)
Lines 285-295 function LoadIssuesTable() { Link Here
285
                    visible: false,
285
                    visible: false,
286
                },
286
                },
287
                {
287
                {
288
                    orderData: 10, // Sort on hidden unformatted issuedate column
288
                    data: {
289
                    data: function (oObj) {
289
                        _: function (row, type, set, meta) {
290
                        return $datetime(oObj.issuedate, {
290
                            let oObj = row;
291
                            no_tz_adjust: true,
291
                            return $datetime(oObj.issuedate, {
292
                        });
292
                                no_tz_adjust: true,
293
                            });
294
                        },
295
                        _: function (row, type, set, meta) {
296
                            return row.issuedate;
297
                        },
293
                    },
298
                    },
294
                },
299
                },
295
                {
300
                {
296
- 

Return to bug 41172