diff --git a/frontend/src/components/account/AccountUsageCell.vue b/frontend/src/components/account/AccountUsageCell.vue index 2c04e673..64f1366b 100644 --- a/frontend/src/components/account/AccountUsageCell.vue +++ b/frontend/src/components/account/AccountUsageCell.vue @@ -126,6 +126,30 @@ :show-now-when-idle="true" color="emerald" /> +
+ +
@@ -1070,7 +1094,7 @@ const attachVisibilityObserver = () => { const loadActiveUsage = async () => { activeQueryLoading.value = true try { - usageInfo.value = await adminAPI.accounts.getUsage(props.account.id, 'active') + usageInfo.value = await adminAPI.accounts.getUsage(props.account.id, 'active', true) } catch (e: any) { console.error('Failed to load active usage:', e) } finally { diff --git a/frontend/src/views/admin/AccountsView.vue b/frontend/src/views/admin/AccountsView.vue index c2159f6f..51137c8b 100644 --- a/frontend/src/views/admin/AccountsView.vue +++ b/frontend/src/views/admin/AccountsView.vue @@ -214,11 +214,11 @@
{{ value }} - {{ row.extra.email_address }} + {{ row.extra?.email_address || row.extra?.email || row.credentials?.email }}