diff --git a/src/views/entityExplorer/entityList/Row.vue b/src/views/entityExplorer/entityList/Row.vue index dd0ea329..3a798d68 100644 --- a/src/views/entityExplorer/entityList/Row.vue +++ b/src/views/entityExplorer/entityList/Row.vue @@ -26,7 +26,7 @@
{{ $t('overall.country') }} :   - {{ entityData.location ? entityData.location.country : '-' }} + {{ $_.get(entityData, 'location.country', '-') || '-' }}
@@ -36,36 +36,36 @@
{{ $t('entities.asn') }} :   - {{ entityData.asn ? entityData.asn.asn : '-' }} + {{ $_.get(entityData, 'asn.asn', '-') || '-' }}