@@ -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 }}