mirror of https://github.com/CIRCL/lookyloo
fix: Properly sort the captures even when the system locale could be better.
parent
178f14a44a
commit
956baef4ae
|
@ -21,7 +21,7 @@ $(document).ready(function () {
|
||||||
"targets": 1,
|
"targets": 1,
|
||||||
"render": function ( data, type, row, meta ) {
|
"render": function ( data, type, row, meta ) {
|
||||||
let date = new Date(data);
|
let date = new Date(data);
|
||||||
return date.toLocaleString();
|
return date.getFullYear() + '-' + date.getMonth().toString().padStart(2, "0") + '-' + date.getDate().toString().padStart(2, "0") + ' ' + date.toTimeString();
|
||||||
}
|
}
|
||||||
}]
|
}]
|
||||||
} );
|
} );
|
||||||
|
|
Loading…
Reference in New Issue