We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 735afd4 + afeb01e commit 79d876aCopy full SHA for 79d876a
src/ui/src/components/blueprints/abstract/BlueprintsNode.vue
@@ -73,7 +73,7 @@
73
"
74
class="BlueprintsNode__main__outputs__title"
75
>
76
- THEN
+ {{ staticOutLabel }}
77
</h4>
78
<BlueprintsNodeOutput
79
v-for="(out, outId) in staticOuts"
@@ -166,6 +166,10 @@ const completionStyle = computed(() => {
166
return def.value?.outs?.[latestKnownOutcome.value]?.style ?? "success";
167
});
168
169
+const staticOutLabel = computed(() =>
170
+ component.value?.type === "blueprints_writerclassification" ? "OR" : "THEN",
171
+);
172
+
173
const latestRun = computed(() => {
174
const logEntries = wfbm.getLogEntries();
175
const runId =
0 commit comments