diff --git a/apps/application/chat_pipeline/step/chat_step/impl/base_chat_step.py b/apps/application/chat_pipeline/step/chat_step/impl/base_chat_step.py index 7395240b1..e782e7e3f 100644 --- a/apps/application/chat_pipeline/step/chat_step/impl/base_chat_step.py +++ b/apps/application/chat_pipeline/step/chat_step/impl/base_chat_step.py @@ -301,7 +301,7 @@ class BaseChatStep(IChatStep): reasoning_content = reasoning_result.get('reasoning_content') + reasoning_result_end.get( 'reasoning_content') post_response_handler.handler(chat_id, chat_record_id, paragraph_list, problem_text, - chat_result.content, manage, self, padding_problem_text, client_id, + content, manage, self, padding_problem_text, client_id, reasoning_content=reasoning_content if reasoning_content_enable else '') add_access_num(client_id, client_type, manage.context.get('application_id')) return manage.get_base_to_response().to_block_response(str(chat_id), str(chat_record_id), diff --git a/ui/src/components/ai-chat/component/ParagraphCard.vue b/ui/src/components/ai-chat/component/ParagraphCard.vue index d6b7936d9..1e6f30893 100644 --- a/ui/src/components/ai-chat/component/ParagraphCard.vue +++ b/ui/src/components/ai-chat/component/ParagraphCard.vue @@ -68,7 +68,7 @@ const props = defineProps({ }, score: { type: Number, - default: 0 + default: null } }) const isMetaObject = computed(() => typeof props.data.meta === 'object') diff --git a/ui/src/components/codemirror-editor/index.vue b/ui/src/components/codemirror-editor/index.vue index 0d9d81cac..52fc72367 100644 --- a/ui/src/components/codemirror-editor/index.vue +++ b/ui/src/components/codemirror-editor/index.vue @@ -16,12 +16,7 @@ - + () const emit = defineEmits(['update:modelValue', 'submitDialog']) diff --git a/ui/src/components/dynamics-form/items/JsonInput.vue b/ui/src/components/dynamics-form/items/JsonInput.vue index 6e55fcf0e..19b68a901 100644 --- a/ui/src/components/dynamics-form/items/JsonInput.vue +++ b/ui/src/components/dynamics-form/items/JsonInput.vue @@ -22,7 +22,7 @@ diff --git a/ui/src/views/function-lib/component/FunctionFormDrawer.vue b/ui/src/views/function-lib/component/FunctionFormDrawer.vue index 2b8031e8c..1435aca93 100644 --- a/ui/src/views/function-lib/component/FunctionFormDrawer.vue +++ b/ui/src/views/function-lib/component/FunctionFormDrawer.vue @@ -134,7 +134,11 @@
- +

{{ $t('common.param.outputParam') }} diff --git a/ui/src/views/team/index.vue b/ui/src/views/team/index.vue index c96754cd4..819515cfc 100644 --- a/ui/src/views/team/index.vue +++ b/ui/src/views/team/index.vue @@ -3,7 +3,7 @@
-

{{$t('views.team.member')}}

+

{{ $t('views.team.member') }}

@@ -29,7 +29,9 @@
{{ row.username }} - {{$t('views.team.manage')}} + {{ + $t('views.team.manage') + }}
@@ -38,9 +40,9 @@ @@ -53,7 +55,7 @@
-

{{$t('views.team.permissionSetting')}}

+

{{ $t('views.team.permissionSetting') }}

- {{ $t('common.save')}} + {{ $t('common.save') }}
@@ -118,7 +120,9 @@ const settingTags = reactive([ watch(filterText, (val) => { if (val) { - filterMember.value = memberList.value.filter((v) => v.username.includes(val)) + filterMember.value = memberList.value.filter((v) => + v.username.toLowerCase().includes(val.toLowerCase()) + ) } else { filterMember.value = memberList.value } diff --git a/ui/src/workflow/common/NodeContainer.vue b/ui/src/workflow/common/NodeContainer.vue index 265634ad0..d3c070a3b 100644 --- a/ui/src/workflow/common/NodeContainer.vue +++ b/ui/src/workflow/common/NodeContainer.vue @@ -135,6 +135,7 @@ :close-on-press-escape="false" :destroy-on-close="true" append-to-body + @submit.prevent >