diff --git a/src/views/entityExplorer/entityList/detailOverview/App.vue b/src/views/entityExplorer/entityList/detailOverview/App.vue
index eaf9579e..7a1e7c49 100644
--- a/src/views/entityExplorer/entityList/detailOverview/App.vue
+++ b/src/views/entityExplorer/entityList/detailOverview/App.vue
@@ -4,15 +4,15 @@
APP ID
-
{{entity.category.appId || '-'}}
+
{{$_.get(entity, 'category.appId', '-')}}
{{$t('entities.category')}}
-
{{entity.category.appCategory || '-'}}
+
{{$_.get(entity, 'category.appCategory', '-')}}
{{$t('entities.subcategory')}}
-
{{entity.category.appSubcategory || '-'}}
+
{{$_.get(entity, 'category.appSubcategory', '-')}}
{{$t('entities.riskLevel')}}
@@ -20,7 +20,7 @@
{{$t('overall.remark')}}
-
{{entity.category.appDescription || '-'}}
+
{{$_.get(entity, 'category.appDescription', '-')}}
@@ -64,18 +64,20 @@
-
-
-
-
-
-
-
-
-
-
-
-
+
{{$t('entities.category')}}
-
{{entityData.category ? entityData.category.categoryName : '-'}}
+
{{$_.get(entityData, 'category.categoryName', '-')}}
{{$t('entities.domainDetail.categoryGroup')}}
-
{{entityData.category ? entityData.category.categoryGroup : '-'}}
+
{{$_.get(entityData, 'category.categoryGroup', '-')}}
{{$t('entities.reputationLevel')}}
-
{{entityData.category ? entityData.category.reputationLevel : '-'}}
+
{{$_.get(entityData, 'category.reputationLevel', '-')}}
{{$t('entities.registration')}}
-
{{entityData.whois ? entityData.whois.registrantCountry : '-'}}
+
{{$_.get(entityData, 'whois.registrantCountry', '-')}}
{{$t('entities.org')}}
-
{{entityData.whois ? entityData.whois.registrantOrg : '-'}}
+
{{$_.get(entityData, 'whois.registrantOrg', '-')}}
{{$t('entities.icpCompanyName')}}
-
{{entityData.icp ? entityData.icp.icpCompanyName : '-'}}
+
{{$_.get(entityData, 'icp.icpCompanyName', '-')}}
{{$t('entities.icpLicense')}}
-
{{entityData.icp ? entityData.icp.icpSiteLicense : '-'}}
+
{{$_.get(entityData, 'icp.icpSiteLicense', '-')}}
@@ -72,18 +72,20 @@
-
-
-
-
-
-
-
-
-
-
-
-
+