From 39a0f0368008a4d849e6e0c0e1a88f27dcea3d5a Mon Sep 17 00:00:00 2001 From: "@changcode" Date: Mon, 21 Feb 2022 15:15:14 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8DEntities=20=3D>=20Enti?= =?UTF-8?q?ty=20Explorer=20=E5=88=97=E8=A1=A8=20regin=20=E5=AD=97=E6=AE=B5?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=B1=95=E7=A4=BA=E4=B8=BA=20null?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/entityExplorer/entityList/Row.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/views/entityExplorer/entityList/Row.vue b/src/views/entityExplorer/entityList/Row.vue index 0a654915..74f14de4 100644 --- a/src/views/entityExplorer/entityList/Row.vue +++ b/src/views/entityExplorer/entityList/Row.vue @@ -20,7 +20,10 @@
{{$t('overall.region')}} :   - {{entityData.ipLocationProvince ? (entityData.ipLocationProvince + ', ' + entityData.ipLocationCity) : '-'}} + {{$_.get(entityData, 'ipLocationProvince') + ', ' + $_.get(entityData, 'ipLocationCity') || '-'}} + {{$_.get(entityData, 'ipLocationProvince')}} + {{$_.get(entityData, 'ipLocationCity')}} + -