summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author陈劲松 <[email protected]>2023-07-17 12:08:09 +0000
committer陈劲松 <[email protected]>2023-07-17 12:08:09 +0000
commit80130e046beca47309d79f6851245a207854e26b (patch)
tree43dce5c739f84f9a74cf9f4ef5df71ca6c5788b9
parent4b044331942b14ddee00f1d5eb9a35537f2c0683 (diff)
parentbddc366f0558bd306437ab581ccf98f05e780f63 (diff)
Merge branch 'cherry-pick-3f450020' into 'dev-23.07'23.07-rc1dev-23.07
fix: 修复实体下拉预览跳转url参数不对的问题 See merge request cyber-narrator/cn-ui!33
-rw-r--r--src/views/detections/overview/DetectionPerformanceEventAppOverview.vue2
-rw-r--r--src/views/detections/overview/DetectionPerformanceEventDomainOverview.vue2
-rw-r--r--src/views/detections/overview/DetectionPerformanceEventIpOverview.vue2
-rw-r--r--src/views/detections/overview/DetectionSecurityEventOverview.vue2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/views/detections/overview/DetectionPerformanceEventAppOverview.vue b/src/views/detections/overview/DetectionPerformanceEventAppOverview.vue
index 6824ace9..26faeb73 100644
--- a/src/views/detections/overview/DetectionPerformanceEventAppOverview.vue
+++ b/src/views/detections/overview/DetectionPerformanceEventAppOverview.vue
@@ -244,7 +244,7 @@ export default {
path: '/entityDetail',
query: {
entityType: type,
- name: name
+ entityName: name
}
})
window.open(href, '_blank')
diff --git a/src/views/detections/overview/DetectionPerformanceEventDomainOverview.vue b/src/views/detections/overview/DetectionPerformanceEventDomainOverview.vue
index 710339c9..6576d614 100644
--- a/src/views/detections/overview/DetectionPerformanceEventDomainOverview.vue
+++ b/src/views/detections/overview/DetectionPerformanceEventDomainOverview.vue
@@ -275,7 +275,7 @@ export default {
path: '/entityDetail',
query: {
entityType: type,
- name: name
+ entityName: name
}
})
window.open(href, '_blank')
diff --git a/src/views/detections/overview/DetectionPerformanceEventIpOverview.vue b/src/views/detections/overview/DetectionPerformanceEventIpOverview.vue
index 8da10026..ae391b42 100644
--- a/src/views/detections/overview/DetectionPerformanceEventIpOverview.vue
+++ b/src/views/detections/overview/DetectionPerformanceEventIpOverview.vue
@@ -236,7 +236,7 @@ export default {
path: '/entityDetail',
query: {
entityType: type,
- name: name
+ entityName: name
}
})
window.open(href, '_blank')
diff --git a/src/views/detections/overview/DetectionSecurityEventOverview.vue b/src/views/detections/overview/DetectionSecurityEventOverview.vue
index c0ca3012..ff883d67 100644
--- a/src/views/detections/overview/DetectionSecurityEventOverview.vue
+++ b/src/views/detections/overview/DetectionSecurityEventOverview.vue
@@ -379,7 +379,7 @@ export default {
path: '/entityDetail',
query: {
entityType: type,
- name: name
+ entityName: name
}
})
window.open(href, '_blank')