diff --git a/src/apps/operator-dashboard.mjs b/src/apps/operator-dashboard.mjs index e207c0c..d539a85 100644 --- a/src/apps/operator-dashboard.mjs +++ b/src/apps/operator-dashboard.mjs @@ -521,7 +521,7 @@ async function loadBootstrapPayload({ auth, page, pageSize }) { [], sourceErrors, ), - safeSourceLoad('asset_catalog', () => loadAssetCatalogSummary(pool, { limit: 80 }), null, sourceErrors), + safeSourceLoad('asset_catalog', () => loadAssetCatalogSummary(pool, { limit: 250 }), null, sourceErrors), safeSourceLoad('pair_config', () => loadPairConfigSummary(pool), null, sourceErrors), loadServiceSnapshots(), safeSourceLoad('near_intents_status', () => loadNearIntentsStatus(runtimeConfig), null, sourceErrors), diff --git a/src/lib/postgres.mjs b/src/lib/postgres.mjs index 19bc3c4..f05cd56 100644 --- a/src/lib/postgres.mjs +++ b/src/lib/postgres.mjs @@ -632,7 +632,7 @@ export function createTradingConfigStore({ }; } -export async function loadAssetCatalogSummary(pool, { limit = 50 } = {}) { +export async function loadAssetCatalogSummary(pool, { limit = 250 } = {}) { await ensureTradingConfigSchema(pool); const [snapshot, countResult] = await Promise.all([ loadTradingConfig(pool), diff --git a/src/operator-dashboard/static/pages/StrategyPage.jsx b/src/operator-dashboard/static/pages/StrategyPage.jsx index acffe48..89b52e3 100644 --- a/src/operator-dashboard/static/pages/StrategyPage.jsx +++ b/src/operator-dashboard/static/pages/StrategyPage.jsx @@ -333,7 +333,7 @@ function AssetCatalogSection({ assetCatalog, onControl }) {
- {items.length ? items.slice(0, 20).map((asset) => ( + {items.length ? items.map((asset) => (