Refactor dashboard layout, quota logic, and connection status pill

This commit is contained in:
jgor20
2026-01-11 10:53:58 +00:00
parent 325acdba8c
commit ed4231310b
8 changed files with 97 additions and 27 deletions

View File

@@ -227,7 +227,10 @@ document.addEventListener('alpine:init', () => {
quotaInfo.push({ pct });
});
if (quotaInfo.length === 0) return;
if (quotaInfo.length === 0) {
// Include model even if no quota info is available (treat as 0% or unknown)
// This ensures the family appears in the charts
}
rows.push({ modelId, family, quotaInfo });
});