feat(stats): implement infinite scrolling and paginated model usage lists (fixes #812)

- Add get_model_usage_list API endpoint for paginated stats
- Replace static rendering with client-side infinite scroll logic
- Add scrollbars and max-height to model usage lists
This commit is contained in:
Will Miao
2026-03-03 15:00:01 +08:00
parent 672e4cff90
commit 8c5d5a8ca0
3 changed files with 156 additions and 72 deletions

View File

@@ -196,6 +196,9 @@
display: flex;
flex-direction: column;
gap: 8px;
max-height: 400px;
overflow-y: auto;
padding-right: 4px;
}
.model-item {