fix
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 25s
Docker Build & Deploy / Deploy to Production (push) Successful in 6s
Docker Build & Deploy / Cleanup Dangling Images (push) Successful in 1s
Docker Build & Deploy / WeChat Notification (push) Successful in 2s

This commit is contained in:
SunCheng
2026-01-22 21:03:00 +08:00
parent 9e14849014
commit dcbde4db23
6 changed files with 602 additions and 169 deletions

View File

@@ -639,14 +639,16 @@ const fetchCategoryStats = async () => {
current: data.month?.current || 0,
limit: data.month?.limit || 0,
count: data.month?.count || 0,
trend: data.month?.trend || []
trend: data.month?.trend || [],
description: data.month?.description || ''
},
year: {
rate: data.year?.rate?.toFixed(1) || '0.0',
current: data.year?.current || 0,
limit: data.year?.limit || 0,
count: data.year?.count || 0,
trend: data.year?.trend || []
trend: data.year?.trend || [],
description: data.year?.description || ''
}
}
}