mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-04-13 13:51:22 -04:00
15 lines
550 B
JavaScript
15 lines
550 B
JavaScript
|
|
(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);
|