mirror of
https://gitee.com/wanwujie/sub2api
synced 2026-04-25 17:14:45 +08:00
fix: remove lite=1 default from account list to restore concurrency display
Upstream v0.1.90 added lite=1 as default parameter for the account list API, which causes the backend to skip all runtime queries (concurrency, session count, RPM, window cost). This resulted in all accounts showing 0 concurrency in the admin UI.
This commit is contained in:
@@ -546,7 +546,7 @@ const {
|
|||||||
handlePageSizeChange: baseHandlePageSizeChange
|
handlePageSizeChange: baseHandlePageSizeChange
|
||||||
} = useTableLoader<Account, any>({
|
} = useTableLoader<Account, any>({
|
||||||
fetchFn: adminAPI.accounts.list,
|
fetchFn: adminAPI.accounts.list,
|
||||||
initialParams: { platform: '', type: '', status: '', group: '', search: '', lite: '1' }
|
initialParams: { platform: '', type: '', status: '', group: '', search: '' }
|
||||||
})
|
})
|
||||||
|
|
||||||
const resetAutoRefreshCache = () => {
|
const resetAutoRefreshCache = () => {
|
||||||
|
|||||||
Reference in New Issue
Block a user