Compare commits

...

1 Commits

Author SHA1 Message Date
Laan Tungir
8998c5664d Re-sort projects table by 30-day commits after lazy commit counts load 2026-05-29 10:58:32 -04:00
2 changed files with 9 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
{
"VERSION": "v0.7.15",
"VERSION_NUMBER": "0.7.15",
"BUILD_DATE": "2026-05-28T18:44:00.780Z"
"VERSION": "v0.7.16",
"VERSION_NUMBER": "0.7.16",
"BUILD_DATE": "2026-05-29T14:58:32.174Z"
}

View File

@@ -637,6 +637,7 @@
};
let projectsPageInitialized = false;
let sortProjectsBy30DayDesc = null;
function setProjectsStatus(msg, isError = false) {
if (!statusEl) return;
@@ -998,6 +999,9 @@
try {
await Promise.all(Array.from({ length: Math.min(concurrency, total || 1) }, () => worker()));
if (typeof sortProjectsBy30DayDesc === 'function') {
sortProjectsBy30DayDesc();
}
} finally {
stopSpinner();
}
@@ -1061,7 +1065,8 @@
});
});
sortRowsByColumn(3, false);
sortProjectsBy30DayDesc = () => sortRowsByColumn(3, false);
sortProjectsBy30DayDesc();
}
async function initializeProjectsPage() {