diff --git a/src/views/detections/DetectionList.vue b/src/views/detections/DetectionList.vue index e033e3b9..b742a72e 100644 --- a/src/views/detections/DetectionList.vue +++ b/src/views/detections/DetectionList.vue @@ -67,13 +67,13 @@ export default { this.myListData = [] this.listData.forEach((item, i) => { this.myListData.push(this.$_.cloneDeep(item)) - if (item.eventInfoObj && item.isBuiltin === 1) { + if (item.eventInfoObj && item.isBuiltin == 1) { axios.get(`${api.detection.securityEvent.detail}/${item.eventInfoObj.ioc_type.toLowerCase()}?resource=${item.eventInfoObj.ioc_value}`).then(res => { if (res.status === 200) { if (item.eventType === 'Anonymity') { - item.darkweb = this.$_.get(res, 'data.data.darkweb', {}) || {} + this.myListData[i].darkweb = this.$_.get(res, 'data.data.darkweb', {}) || {} } else if (item.eventType === 'Command and Control') { - item.malware = this.$_.get(res, 'data.data.malware', {}) || {} + this.myListData[i].malware = this.$_.get(res, 'data.data.malware', {}) || {} } } }).catch(e => { diff --git a/src/views/detections/overview/DetectionSecurityEventOverview.vue b/src/views/detections/overview/DetectionSecurityEventOverview.vue index 3053c063..4cbabdc1 100644 --- a/src/views/detections/overview/DetectionSecurityEventOverview.vue +++ b/src/views/detections/overview/DetectionSecurityEventOverview.vue @@ -3,10 +3,10 @@
{{ $t('overall.remark') }}
-
+
{{detection.victimIp}}  communicated with {{detection.offenderIp}}  that was associated with the indicator of {{detection.eventName}} activity, {{$_.get(detection, 'eventInfoObj.ioc_value', '') || ''}}.
-
+
{{detection.victimIp}}  communicated with {{detection.offenderIp}}  that was associated with the indicator of {{detection.eventName}}.
@@ -110,19 +110,19 @@