diff --git a/src/views/charts/charts/IpBasicInfo.vue b/src/views/charts/charts/IpBasicInfo.vue
index 9a2d55d9..7df5930c 100644
--- a/src/views/charts/charts/IpBasicInfo.vue
+++ b/src/views/charts/charts/IpBasicInfo.vue
@@ -9,10 +9,10 @@
{{(chartData && chartData.dnsPtr) || '-'}}
- {{$_.get(detectionsData, 'dnsServerRole', '-')}}
- {{$_.get(detectionsData, 'dnsServerOrg', '-')}}
- {{$_.get(detectionsData, 'dnsServerSoftware', '-')}}
- {{$_.get(detectionsData, 'dnsServerOs', '-')}}
+ {{$_.get(detectionsData, 'dnsServerRole') || '-'}}
+ {{$_.get(detectionsData, 'dnsServerOrg') || '-'}}
+ {{$_.get(detectionsData, 'dnsServerSoftware') || '-'}}
+ {{$_.get(detectionsData, 'dnsServerOs') || '-'}}
{{detectionIpSupporting(detectionsData)}}
diff --git a/src/views/entityExplorer/entityList/detailOverview/Ip.vue b/src/views/entityExplorer/entityList/detailOverview/Ip.vue
index 4e4034f0..4dbcf7e3 100644
--- a/src/views/entityExplorer/entityList/detailOverview/Ip.vue
+++ b/src/views/entityExplorer/entityList/detailOverview/Ip.vue
@@ -17,23 +17,23 @@
{{$t('overall.dnsServerInfo.role')}}
-
{{$_.get(entityData, 'dnsServerRole', '-')}}
+
{{$_.get(entityData, 'dnsServerRole') || '-'}}
{{$t('overall.dnsServerInfo.mechanism')}}
-
{{$_.get(entityData, 'dnsServerOrg', '-')}}
+
{{$_.get(entityData, 'dnsServerOrg') || '-'}}
{{$t('overall.dnsServerInfo.software')}}
-
{{$_.get(entityData, 'dnsServerSoftware', '-')}}
+
{{$_.get(entityData, 'dnsServerSoftware') || '-'}}
{{$t('overall.dnsServerInfo.system')}}
-
{{$_.get(entityData, 'dnsServerOs', '-')}}
+
{{$_.get(entityData, 'dnsServerOs') || '-'}}
{{$t('overall.dnsServerInfo.protocol')}}
-
{{detectionIpSupporting(entityData)}}
+
{{detectionIpSupporting(entityData) || '-'}}
{{$t('overall.dnsServerInfo.queryRate')}}