diff --git a/src/views/entityExplorer/entityGraph/GraphEntityList.vue b/src/views/entityExplorer/entityGraph/GraphEntityList.vue index 54da3356..06c4f7dc 100644 --- a/src/views/entityExplorer/entityGraph/GraphEntityList.vue +++ b/src/views/entityExplorer/entityGraph/GraphEntityList.vue @@ -50,7 +50,7 @@
ASN:
-
{{ $_.get(item.detail, 'asn.asn', '-') }}
+
{{ $_.get(item.detail, 'asn.asn', '-') || '-' }}
@@ -58,19 +58,19 @@
{{$t('entities.category')}}:
-
{{ $_.get(item.detail, 'category.categoryName', '-') }}
+
{{ $_.get(item.detail, 'category.categoryName', '-') || '-' }}
{{$t('entities.group')}}:
-
{{ $_.get(item.detail, 'category.categoryGroup', '-') }}
+
{{ $_.get(item.detail, 'category.categoryGroup', '-') || '-' }}
{{$t('entities.registration')}}:
-
{{ $_.get(item.detail, 'whois.registrantCountry', '-') }}
+
{{ $_.get(item.detail, 'whois.registrantCountry', '-') || '-' }}
{{$t('entities.registry')}}:
-
{{ $_.get(item.detail, 'whois.registrantOrg', '-') }}
+
{{ $_.get(item.detail, 'whois.registrantOrg', '-') || '-' }}
@@ -78,23 +78,23 @@
APP ID:
-
{{ $_.get(item.detail, 'category.appId', '-') }}
+
{{ $_.get(item.detail, 'category.appId', '-') || '-' }}
{{$t('entities.category')}}:
-
{{ $_.get(item.detail, 'category.appCategory', '-') }}
+
{{ $_.get(item.detail, 'category.appCategory', '-') || '-' }}
{{$t('entities.subcategory')}}:
-
{{ $_.get(item.detail, 'category.appSubcategory', '-') }}
+
{{ $_.get(item.detail, 'category.appSubcategory', '-') || '-' }}
{{$t('entities.riskLevel')}}:
-
{{ appRisk($_.get(item.detail, 'category.appRisk', '-')) }}
+
{{ appRisk($_.get(item.detail, 'category.appRisk', '-')) || '-' }}
{{$t('config.dataSource.description')}}:
-
{{ $_.get(item.detail, 'category.appDescription', '-') }}
+
{{ $_.get(item.detail, 'category.appDescription', '-') || '-' }}