diff --git a/src/views/detections/overview/IndicatorMatchOverview.vue b/src/views/detections/overview/IndicatorMatchOverview.vue index f6974c9a..be94bff8 100644 --- a/src/views/detections/overview/IndicatorMatchOverview.vue +++ b/src/views/detections/overview/IndicatorMatchOverview.vue @@ -30,7 +30,7 @@
-
{{ $t('detection.list.eventSecurity') }}
+
{{ $t('detection.list.eventSeverity') }}
{{ getSeverityByCode(myDetection.severity) || '-' }}
@@ -41,10 +41,10 @@
{{ $t('detection.clientLocation') }}
-
+ -
+ {{ 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('overall.fields') }}
-
{{ $t('detection.list.eventSecurity') }}
+
{{ $t('detection.list.eventSeverity') }}
{{ getSeverityByCode(myDetection.severity) || '-' }}
@@ -18,7 +18,17 @@
{{ fields }}
-
{{ item || '-' }}
+
+
+
+ + {{ dateFormatByAppearance(item) }} +
+
{{ item }}
+
+
{{ item }}
+
+
-
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 }