fix: update stale labels and add callback backlog stats card

Fixed login page (removed I1 tag, updated demo accounts). Added backlog stats bar to CallbackInboxView. Fixed size:500 to size:200 across all list views to match backend @Max(200) validation.

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
2026-05-27 08:37:16 +08:00
parent 2e4caf72ce
commit 2609ea3f79
11 changed files with 48 additions and 16 deletions
@@ -136,7 +136,7 @@ function formatDateTime(v) {
async function loadProjects() {
try {
const { data } = await listProjects({ page: 0, size: 500 });
const { data } = await listProjects({ page: 0, size: 200 });
const body = data && typeof data === "object" ? data : {};
const list = Array.isArray(body.content) ? body.content : [];
projectOptions.value = list;