Skip to content

Commit 376e25d

Browse files
fix: Fix type errors
1 parent 8220f52 commit 376e25d

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

ui/src/components/ai-chat/component/knowledge-source-component/ExecutionDetailCard.vue

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -851,12 +851,9 @@ import { getImgUrl } from '@/utils/common'
851851
import { arraySort } from '@/utils/array'
852852
853853
import { t } from '@/locales'
854-
const props = defineProps({
855-
data: {
856-
type: Object,
857-
default: () => {},
858-
},
859-
})
854+
const props = defineProps<{
855+
data: any
856+
}>()
860857
const currentLoopNode = ref(0)
861858
</script>
862859
<style lang="scss" scoped></style>

0 commit comments

Comments
 (0)