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

(-)a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js (-3 / +6 lines)
Lines 929-936 $(document).ready(function() { Link Here
929
                    },
929
                    },
930
                    {
930
                    {
931
                        "mDataProp": function ( oObj ) {
931
                        "mDataProp": function ( oObj ) {
932
                            let updated_on = new Date( oObj.updated_on );
932
                            if ( oObj.updated_on ) {
933
                            return updated_on.toLocaleDateString();
933
                                let updated_on = new Date( oObj.updated_on );
934
                                return updated_on.toLocaleDateString();
935
                            } else {
936
                                return "";
937
                            }
934
                        }
938
                        }
935
                    },
939
                    },
936
                    {
940
                    {
937
- 

Return to bug 24765