diff --git a/src/components/Cards/DetailCard/auto.vue b/src/components/Cards/DetailCard/auto.vue
index d66cafa64..36a2d8136 100644
--- a/src/components/Cards/DetailCard/auto.vue
+++ b/src/components/Cards/DetailCard/auto.vue
@@ -173,7 +173,7 @@ export default {
const data = await this.$store.dispatch('common/getUrlMeta', { url: this.url })
let remoteMeta = data.actions['GET'] || {}
if (this.nested) {
- remoteMeta = remoteMeta[this.nested]?.children || {}
+ remoteMeta = remoteMeta[this.nested]?.children || remoteMeta || {}
}
let fields = this.fields
fields = fields || Object.keys(remoteMeta)
diff --git a/src/views/accounts/AccountDiscover/AccountDetail/index.vue b/src/views/accounts/AccountDiscover/AccountDetail/index.vue
index 0fc498341..4a9af6b2f 100644
--- a/src/views/accounts/AccountDiscover/AccountDetail/index.vue
+++ b/src/views/accounts/AccountDiscover/AccountDetail/index.vue
@@ -9,14 +9,12 @@
-
-