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 @@
@@ -36,36 +36,36 @@
{{ $t('entities.asn') }} :
- {{ entityData.asn ? entityData.asn.asn : '-' }}
+ {{ $_.get(entityData, 'asn.asn', '-') || '-' }}
{{ $t('entities.category') }} :
- {{ entityData.category ? entityData.category.categoryGroup : '-' }}
+ {{ $_.get(entityData, 'category.categoryGroup', '-') || '-' }}
{{ $t('entities.subcategory') }} :
- {{ entityData.category ? entityData.category.categoryName : '-' }}
+ {{ $_.get(entityData, 'category.categoryName', '-') || '-' }}
{{ $t('entities.reputationLevel') }} :
- {{ entityData.category ? entityData.category.reputationLevel : '-' }}
+ {{ $_.get(entityData, 'category.reputationLevel', '-') || '-' }}
{{ $t('entities.category') }} :
- {{ entityData.category ? entityData.category.appCategory : '-' }}
+ {{ $_.get(entityData, 'category.appCategory', '-') || '-' }}
{{ $t('entities.subcategory') }} :
- {{ entityData.category ? entityData.category.appSubcategory : '-' }}
+ {{ $_.get(entityData, 'category.appSubcategory', '-') || '-' }}