Skip to content

Commit 0ee4b7f

Browse files
fix: execution
1 parent f01bf62 commit 0ee4b7f

File tree

5 files changed

+612
-638
lines changed

5 files changed

+612
-638
lines changed

ui/src/components/ai-chat/ExecutionDetailDialog.vue

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,18 @@
88
align-center
99
@click.stop
1010
>
11-
<ExecutionDetailContent :detail="detail" />
11+
<ExecutionDetailContent :detail="detail" :type="type" />
1212
</el-dialog>
1313
</template>
1414
<script setup lang="ts">
1515
import { ref, watch, onBeforeUnmount } from 'vue'
1616
import { cloneDeep } from 'lodash'
1717
import ExecutionDetailContent from './component/ExecutionDetailContent.vue'
1818
19+
const props = defineProps<{
20+
type?: string
21+
}>()
22+
1923
const dialogVisible = ref(false)
2024
const detail = ref<any[]>([])
2125

ui/src/components/ai-chat/KnowledgeSource.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
<!-- 知识库引用 dialog -->
6464
<ParagraphSourceDialog ref="ParagraphSourceDialogRef" />
6565
<!-- 执行详情 dialog -->
66-
<ExecutionDetailDialog ref="ExecutionDetailDialogRef" />
66+
<ExecutionDetailDialog ref="ExecutionDetailDialogRef" :type="type" />
6767
</div>
6868
</template>
6969
<script setup lang="ts">

0 commit comments

Comments
 (0)