convert time to sort

This commit is contained in:
Beverly Nguyen
2024-07-23 12:01:40 -07:00
parent febd037bed
commit 5d287d236e
6 changed files with 55 additions and 34 deletions

View File

@@ -0,0 +1,14 @@
(function (window) {
// document.addEventListener("DOMContentLoaded", function() {
// const rows = document.querySelectorAll('td.table-field.file-name');
// rows.forEach(row => {
// let sortValue = row.getAttribute('data-sort-value');
// if (sortValue) {
// // Remove non-numeric characters to ensure numerical comparison
// sortValue = sortValue.replace(/\D/g, '');
// row.setAttribute('data-sort-value', sortValue);
// }
// });
// });
})(window);