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 928-935 $(document).ready(function() { Link Here
928
                    },
928
                    },
929
                    {
929
                    {
930
                        "mDataProp": function ( oObj ) {
930
                        "mDataProp": function ( oObj ) {
931
                            let updated_on = new Date( oObj.updated_on );
931
                            if ( oObj.updated_on ) {
932
                            return updated_on.toLocaleDateString();
932
                                let updated_on = new Date( oObj.updated_on );
933
                                return updated_on.toLocaleDateString();
934
                            } else {
935
                                return "";
936
                            }
933
                        }
937
                        }
934
                    },
938
                    },
935
                    {
939
                    {
936
- 

Return to bug 24765