Skip to content

Commit d44bdd2

Browse files
fix: i18n bug
1 parent a22c2e1 commit d44bdd2

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

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

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -214,12 +214,9 @@
214214
{{ item.question || '-' }}
215215
</div>
216216
</div>
217-
<div
218-
class="card-never border-r-4 mt-8"
219-
v-if="item.type == WorkflowType.AiChat"
220-
>
217+
<div class="card-never border-r-4 mt-8" v-if="item.type == WorkflowType.AiChat">
221218
<h5 class="p-8-12">
222-
{{ $t('views.applicationWorkflow.nodes.aiChatNode.think')}}
219+
{{ $t('views.applicationWorkflow.nodes.aiChatNode.think') }}
223220
</h5>
224221
<div class="p-8-12 border-t-dashed lighter pre-wrap">
225222
{{ item.reasoning_content || '-' }}
@@ -271,7 +268,7 @@
271268
<template v-if="item.type === WorkflowType.DocumentExtractNode">
272269
<div class="card-never border-r-4">
273270
<h5 class="p-8-12 flex align-center">
274-
<span class="mr-4">{{ $t('chat.executionDetails.paramOutput') }}</span>
271+
<span class="mr-4"> {{ $t('common.param.outputParam') }}</span>
275272

276273
<el-tooltip
277274
effect="dark"

0 commit comments

Comments
 (0)