-
+
-
+
{{ myDetection.clientCountryRegion || '-' }}, {{ myDetection.clientSuperAdminArea || '-' }}
-
diff --git a/src/views/detections/overview/SequenceOverview.vue b/src/views/detections/overview/SequenceOverview.vue
index 2905cd27..5df8c8eb 100644
--- a/src/views/detections/overview/SequenceOverview.vue
+++ b/src/views/detections/overview/SequenceOverview.vue
@@ -9,7 +9,7 @@
-
{{ $t('detection.list.eventSecurity') }}
+
{{ $t('detection.list.eventSeverity') }}
{{ getSeverityByCode(myDetection.severity) || '-' }}
diff --git a/src/views/detections/overview/detectionDetailMixin.js b/src/views/detections/overview/detectionDetailMixin.js
index a6e6022b..660c4b80 100644
--- a/src/views/detections/overview/detectionDetailMixin.js
+++ b/src/views/detections/overview/detectionDetailMixin.js
@@ -137,7 +137,7 @@ export default {
this.handleLineChart(data)
}
const detailData = data[0]
- if (detailData.eventInfo) {
+ if (detailData?.eventInfo) {
detailData.eventInfoList = JSON.parse(detailData.eventInfo)
}
this.myDetection = { ...this.myDetection, ...detailData }