diff --git a/src/views/detections/DetectionRow.vue b/src/views/detections/DetectionRow.vue index 4428c7f0..dc3b9e0a 100644 --- a/src/views/detections/DetectionRow.vue +++ b/src/views/detections/DetectionRow.vue @@ -8,10 +8,10 @@
- {{detection.offenderIp}} + {{detection.offenderIp || '-'}} ------- - {{detection.victimIp}} + {{detection.victimIp || '-'}}
@@ -23,44 +23,44 @@
{{$t('detection.list.eventSecurity')}} :   - {{detection.eventSecurity}} + {{detection.eventSecurity || '-'}}
{{$t('detections.eventSeverity')}} :   - {{detection.eventSeverity}} + {{detection.eventSeverity || '-'}}
{{$t('detection.list.securityType')}} :   - {{detection.securityType}} + {{detection.securityType || '-'}}
{{$t('detections.eventType')}} :   - {{detection.eventType}} + {{detection.eventType || '-'}}
{{$t('detection.list.malwareName')}} :   - {{detection.malwareName}} + {{detection.malwareName || '-'}}
{{$t('detection.list.cryptominingPool')}} :   - {{detection.cryptominingPool}} + {{detection.cryptominingPool || '-'}}
{{$t('detection.list.startTime')}} :   - {{dayJs.tz(getMillisecond(detection.startTime)).format('YYYY-MM-DD HH:mm:ss')}} + {{dayJs.tz(getMillisecond(detection.startTime)).format('YYYY-MM-DD HH:mm:ss') || '-'}}
{{$t('overall.duration')}} :   - {{unitConvert(detection.durationMs, 'time', null, null, 0).join(' ')}} + {{unitConvert(detection.durationMs, 'time', null, null, 0).join(' ') || '-'}}