Dashboard: move waste-chart above expiring; fix opened-items conf split, expiry cache, AI validation, MAX_SHOWN 20; remove DupliClick from README

This commit is contained in:
dadaloop82
2026-04-29 17:02:10 +00:00
parent 3c9fe7dfea
commit e71ef3aba3
5 changed files with 86 additions and 6 deletions
+1 -1
View File
@@ -2529,7 +2529,7 @@ async function loadDashboard() {
if (statsData.opened && statsData.opened.length > 0) {
// Sorted server-side by days_to_expiry ASC
openedSection.style.display = 'block';
const MAX_SHOWN = 10;
const MAX_SHOWN = 20;
const visible = statsData.opened.slice(0, MAX_SHOWN);
const extra = statsData.opened.length - visible.length;
openedList.innerHTML = visible.map(item => {