From aeaecaed7f3d52990f2d3a9c172170bcd9dc02e5 Mon Sep 17 00:00:00 2001
From: chenjinsong <523037378@qq.com>
Date: Fri, 15 Sep 2023 15:38:52 +0800
Subject: [PATCH] =?UTF-8?q?CN-1297=20fix:=20=E4=BF=AE=E5=A4=8D=E5=AE=9E?=
=?UTF-8?q?=E4=BD=93=E6=8E=A2=E7=B4=A2=E6=9C=89=E4=BA=9B=E5=AD=97=E6=AE=B5?=
=?UTF-8?q?=E4=B8=BA=E7=A9=BA=E6=97=B6=E6=B2=A1=E9=BB=98=E8=AE=A4=E6=8F=90?=
=?UTF-8?q?=E7=A4=BA=E7=9A=84=E9=97=AE=E9=A2=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../entityGraph/GraphEntityList.vue | 20 +++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
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', '-') || '-' }}