We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7af880f commit e1b3f47Copy full SHA for e1b3f47
1 file changed
ui/src/components/ai-chat/component/knowledge-source-component/ExecutionDetailCard.vue
@@ -173,7 +173,8 @@
173
v-if="
174
data.type == WorkflowType.AiChat ||
175
data.type == WorkflowType.Question ||
176
- data.type == WorkflowType.Application || data.type == WorkflowType.IntentNode
+ data.type == WorkflowType.Application ||
177
+ data.type == WorkflowType.IntentNode
178
"
179
>
180
<div class="card-never border-r-6" v-if="data.type !== WorkflowType.Application">
@@ -807,7 +808,7 @@
807
808
<span class="color-secondary">
809
{{ $t('views.applicationWorkflow.nodes.loopNode.loopArray.label') }}:</span
810
- {{ data.value || '-' }}
811
+ {{ data.loop_type === 'NUMBER' ? data.number : Object.keys(data.loop_node_data) || '-' }}
812
</div>
813
814
<h5 class="p-8-12">
0 commit comments