diff --git a/ui/src/components/ai-chat/ExecutionDetailDialog.vue b/ui/src/components/ai-chat/ExecutionDetailDialog.vue index d63137bea..715996d81 100644 --- a/ui/src/components/ai-chat/ExecutionDetailDialog.vue +++ b/ui/src/components/ai-chat/ExecutionDetailDialog.vue @@ -28,65 +28,72 @@ @@ -95,7 +102,7 @@
判断结果
- {{ item.branch_name }} + {{ item.branch_name || '-' }}
@@ -112,29 +119,36 @@
历史记录
-

- {{ history.role }}:{{ history.content }} -

+ +
本次对话
-
{{ item.question }}
+
+ {{ item.question || '-' }} +
AI 回答
+
@@ -146,11 +160,13 @@
+
diff --git a/ui/src/workflow/common/CustomLine.vue b/ui/src/workflow/common/CustomLine.vue index 3765d0169..7d1039e02 100644 --- a/ui/src/workflow/common/CustomLine.vue +++ b/ui/src/workflow/common/CustomLine.vue @@ -30,8 +30,8 @@ const deleteEdge = () => { .custom-edge { color: var(--el-color-primary); stroke: none; - width: 22px; z-index: 100000; position: absolute; + pointer-events: all; }