fix: Wave 1 — critical bug fixes across 9 files
All checks were successful
Test Asgard Runner / test (push) Successful in 3s
All checks were successful
Test Asgard Runner / test (push) Successful in 3s
- Fix double-prefix URL bugs in 4 analytics/revenue views (/api/api → /api) - Fix AdminDashboard quick-links routing (/platform-admin/* → /admin/*) - Fix MigrationView import missing Authorization header - Remove dead ConsoleModule from app.module (conflicts with NatsBridgeGateway on /ws) - Fix store.service.ts raw Error throws → NotFoundException/ForbiddenException - Fix payment-order entity FK (webstore_subscription_id → WebstoreSubscription) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -19,7 +19,7 @@ let performanceChartInstance: ECharts | null = null
|
||||
const loadMapAnalytics = async () => {
|
||||
loading.value = true
|
||||
try {
|
||||
const response = await api.get<MapAnalyticsSummary>(`/api/analytics/maps?range=${timeRange.value}`)
|
||||
const response = await api.get<MapAnalyticsSummary>(`/analytics/maps?range=${timeRange.value}`)
|
||||
analytics.value = response
|
||||
await nextTick()
|
||||
renderCharts()
|
||||
|
||||
Reference in New Issue
Block a user