Skip to content

Commit 5876132

Browse files
fix: type
1 parent 0772cf1 commit 5876132

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

ui/src/components/ai-chat/component/chat-input-operate/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ const quickInputRef = ref()
419419
const props = withDefaults(
420420
defineProps<{
421421
applicationDetails: any
422-
type: 'log' | 'ai-chat' | 'debug-ai-chat'
422+
type: 'log' | 'ai-chat' | 'debug-ai-chat' | 'share'
423423
loading: boolean
424424
isMobile: boolean
425425
appId?: string

ui/src/components/ai-chat/component/prologue-content/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import useStore from '@/stores'
3232
const props = defineProps<{
3333
application: any
3434
available: boolean
35-
type: 'log' | 'ai-chat' | 'debug-ai-chat'
35+
type: 'log' | 'ai-chat' | 'debug-ai-chat' | 'share'
3636
sendMessage: (question: string, other_params_data?: any, chat?: chatType) => void
3737
}>()
3838

ui/src/components/ai-chat/component/transition-content/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
defineProps<{
2424
text: string
2525
application: any
26-
type: 'log' | 'ai-chat' | 'debug-ai-chat'
26+
type: 'log' | 'ai-chat' | 'debug-ai-chat' | 'share'
2727
}>()
2828
</script>
2929
<style lang="scss" scoped>

ui/src/components/ai-chat/component/user-form/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const {
6262
} = route
6363
const props = defineProps<{
6464
application: any
65-
type: 'log' | 'ai-chat' | 'debug-ai-chat'
65+
type: 'log' | 'ai-chat' | 'debug-ai-chat' | 'share'
6666
api_form_data: any
6767
form_data: any
6868
first?: boolean

ui/src/components/markdown/MdRenderer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ const props = withDefaults(
8080
chat_record_id?: string
8181
runtime_node_id?: string
8282
disabled?: boolean
83-
type?: 'log' | 'ai-chat' | 'debug-ai-chat'
83+
type?: 'log' | 'ai-chat' | 'debug-ai-chat' | 'share'
8484
}>(),
8585
{
8686
source: '',

0 commit comments

Comments
 (0)