From 376e25d796900adf187f3c4a54e30a0ed0850c90 Mon Sep 17 00:00:00 2001 From: wangdan-fit2cloud Date: Thu, 18 Sep 2025 11:40:09 +0800 Subject: [PATCH] fix: Fix type errors --- .../knowledge-source-component/ExecutionDetailCard.vue | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/ui/src/components/ai-chat/component/knowledge-source-component/ExecutionDetailCard.vue b/ui/src/components/ai-chat/component/knowledge-source-component/ExecutionDetailCard.vue index 5569ab956..30af61e54 100644 --- a/ui/src/components/ai-chat/component/knowledge-source-component/ExecutionDetailCard.vue +++ b/ui/src/components/ai-chat/component/knowledge-source-component/ExecutionDetailCard.vue @@ -851,12 +851,9 @@ import { getImgUrl } from '@/utils/common' import { arraySort } from '@/utils/array' import { t } from '@/locales' -const props = defineProps({ - data: { - type: Object, - default: () => {}, - }, -}) +const props = defineProps<{ + data: any +}>() const currentLoopNode = ref(0)